mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
26 lines
382 B
HTML
26 lines
382 B
HTML
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
|
|
function crash()
|
|
{
|
|
try {
|
|
window.getSelection().containsNode([], false);
|
|
} catch(e) { }
|
|
|
|
try {
|
|
window.getSelection().containsNode(null, false);
|
|
} catch(e) { }
|
|
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="setTimeout(crash, 10);">
|
|
Foo
|
|
</body>
|
|
|
|
</html>
|