mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
19 lines
366 B
HTML
19 lines
366 B
HTML
<!DOCTYPE html>
|
|
<html style="margin-left: 100%">
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
document.documentElement.offsetHeight;
|
|
document.body.lastChild.data = "\u062A"; // ARABIC LETTER TEH
|
|
document.body.lastChild.data += "Y";
|
|
document.documentElement.offsetHeight;
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();"><span>A</span> B C</body>
|
|
</html>
|