mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
18 lines
335 B
HTML
18 lines
335 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
document.documentElement.offsetHeight;
|
|
document.getElementById("f").appendChild(document.createTextNode("\u00AD"));
|
|
document.documentElement.offsetHeight;
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();"><fieldset id="f"> </fieldset></body>
|
|
</html>
|
|
|