blob: a87edcecbf654f6e6da6418f9a93cf55970203dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!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>
|