blob: 8ad8a81962df4532db51917a0dba6c568e3d8e91 [file] [log] [blame]
<html><head>
<script>
function runTest() {
var dcont = document.getElementById("dcont");
var e = document.createElement('frameset');
var span = document.createElement('span');
e.appendChild(span);
dcont.appendChild(e);
if (window.testRunner)
testRunner.displayAndTrackRepaints();
}
</script>
</head><body onload="runTest()">
<div>This tests that putting an inline element (such as a span) inside of an element doesn't cause an assertion failure.</div>
<div id="dcont">
</div>
</body></html>