blob: ecc77a5e9b325b7c6092472e3f967ba0e6c48c50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<meta charset="UTF-8">
<script>
function go() {
let win = window.open("1667491_1.html");
win.finish = function() {
document.documentElement.removeAttribute("class");
};
}
</script>
</head>
<body onload="go()">
</body>
</html>
|