blob: a448dad09c0fb608b4f0ced1fc1e3e07c27dff20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<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>
|