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