blob: ca2bfc378f2692840ecfadba00684d8f2e9cfba1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
function go() {
window.location = "javascript: foopy();";
setTimeout(function(){document.documentElement.removeAttribute("class");}, 0);
}
</script>
</head>
<body onload="go()">
</body>
</html>
|