mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
b1dd1c04eb
--HG-- extra : rebase_source : 1d7f12a729e471871cb6b610461f9b4eee2c64ae
21 lines
396 B
HTML
21 lines
396 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
|
|
function boom()
|
|
{
|
|
var v = document.getElementById("v");
|
|
v.childNodes[1].firstChild.data = "";
|
|
document.documentElement.offsetHeight;
|
|
v.appendChild(document.createTextNode("D"));
|
|
v.removeChild(v.firstChild);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();">
|
|
<div id="v"><span>A</span><span>یC</span></div>
|
|
</body>
|
|
</html>
|