mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
18 lines
314 B
HTML
18 lines
314 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
document.documentElement.offsetHeight;
|
|
var n = document.getElementById("a").firstChild;
|
|
n.data = "";
|
|
n.data = "z";
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();" style="-moz-column-count: 3;"><span id="a">x‮</span><span>y</span></body>
|
|
</html>
|