blob: c8ffd03976f97fb0b74b764f143dd5bd72c59f97 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>This tests that innerText works fine when a flow node is present in a simple line layout container.</title>
<style>
.to {
-webkit-flow-into: redirectToNowhere;
}
</style>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
</head>
<body><div id=foo>PASS if no crash or ASSERT in debug.<span class="to">f</span>o</div>
<script>
document.getElementById("foo").innerText;
</script>
</body>