blob: 0e46831a186022eb23e8aa9cfbcf00773f2ec83f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
function loaded() {
var node = document.createElement("frame");
node.src = "data:text/plain,PASS";
node.setAttribute("onload", "document.documentElement.className = ''");
document.getElementById("x").appendChild(node);
}
</script>
</head>
<frameset rows="*" id="x" onload="loaded()">
</frameset>
</html>
|