mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-19 07:31:25 +00:00
23 lines
388 B
HTML
23 lines
388 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
// Force frame construction
|
|
document.documentElement.offsetHeight;
|
|
|
|
// A dynamic change
|
|
var x = document.getElementById("x");
|
|
x.parentNode.removeChild(x);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();">
|
|
<div><span>١<span id="x"></span>٣</span>ت</div>
|
|
</body>
|
|
</html>
|