mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|