Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: snapshot
- Manifest: layout/reftests/bugs/reftest.list
<!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>