tenfourfox/dom/base/crashtests/372554-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

23 lines
317 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
function boom()
{
if (location.protocol == "file:") {
try {
location.hostname = 'foo';
} catch(e) {
}
}
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(boom, 30)">
</body>
</html>