tenfourfox/js/xpconnect/crashtests/786142.html

17 lines
393 B
HTML
Raw Permalink Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
function go() {
// document.open() doesn't play well with reftest-wait, so we use an iframe.
var ifr = document.getElementById('ifr');
ifr.contentWindow.doTest();
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body>
<iframe id="ifr" onload="go()" src="786142-iframe.html"></iframe>
</body>
</html>