Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
<html class="reftest-wait">
<head>
<script>
function boom()
{
document.getElementById("frameset").appendChild(document.createElement("frame"));
document.getElementById("frameset").setAttribute("rows", "100%, *");
document.documentElement.removeAttribute("class");
}
</script>
</head>
<frameset id="frameset" cols="130, *" onload="setTimeout(boom, 30);">
<frame src="data:text/html,foo">
<frame src="data:text/html,bar">
</frameset>
</html>