gecko-dev/gfx/tests/crashtests/1343666.html

24 строки
431 B
HTML

<html class="reftest-wait">
<head>
<meta charset="UTF-8">
<script>
function f()
{
finish();
}
window.onload = function() {
let a = window.open("empty.html", null, "width=300,height=300");
setTimeout(function(){
a.close();
a.addEventListener("vrdisplayconnect", function(){});
window.close();
document.documentElement.removeAttribute("class");
}, 0);
};
</script>
</head>
</html>