tenfourfox/layout/reftests/bugs/306660-2.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

16 lines
384 B
HTML

<!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>