mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
290 B
HTML
18 lines
290 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<script type="text/javascript">
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
var textNode = document.createTextNode("\u202B" + "A B");
|
||
|
document.body.appendChild(textNode);
|
||
|
document.body.offsetHeight;
|
||
|
textNode.data = "\u202B" + " C";
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body onload="boom();"></body>
|
||
|
</html>
|