gecko-dev/gfx/tests/crashtests/1343666.html
Kearwood Gilbert 7b5efdb1fd Bug 1343666 - Part 2: Add crashtest; r=daoshengmu
MozReview-Commit-ID: 94nSsq7BR0e
2017-03-13 10:37:24 -07:00

24 lines
441 B
HTML

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