mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
16 lines
323 B
HTML
16 lines
323 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
function boom()
|
|
{
|
|
document.getElementById("w").firstChild.data = "";
|
|
document.documentElement.appendChild(document.body);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="boom();">
|
|
<div><span>ۍ</span><span id="w"> </span><span>ۋ</span></div>
|
|
</body>
|
|
</html>
|