mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
fb3a1a19b2
--HG-- extra : rebase_source : 2cd0b9d4bdfb47d8757efe0ca9983cbbcfca423c
15 lines
294 B
HTML
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>
|