Testing to see what user agent is rendering this JavaScript
User Agent:
It fails
There is a script just before the closing </body> tag
<script>
const agent = navigator.userAgent;
document.querySelector('meta[name="description"]').setAttribute("content", "Rendered with: " + agent);
document.getElementById("result").innerText = agent;
</script>