18 lines
556 B
HTML
18 lines
556 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
document.designMode = "on";
|
|
Promise.all([
|
|
new Promise(resolve => addEventListener("load", resolve)),
|
|
new Promise(resolve => addEventListener("focus", resolve)),
|
|
]).then(() => {
|
|
document.body.firstChild.data = "";
|
|
document.documentElement.removeAttribute("class");
|
|
});
|
|
blur();
|
|
focus();
|
|
getSelection().collapse(document.body, 0);
|
|
</script>
|
|
</head>
|
|
<body><![CDATA[ CDATA ]]></body>
|
|
</html>
|