mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-02 07:30:08 +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>
|