Mypal/layout/reftests/bugs/495385-3.html
2019-03-11 13:26:37 +03:00

15 lines
294 B
HTML

<!DOCTYPE HTML>
<html>
<!-- Test that changes to text contents create frames when necessary -->
<head>
<script>
function loaded() {
document.body.offsetHeight;
document.body.firstChild.data = 'X';
}
</script>
</head>
<body onload="loaded()" style="border:1px solid black;">
</body>
</html>