зеркало из https://github.com/mozilla/pjs.git
18 строки
408 B
HTML
18 строки
408 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
function doTest() {
|
|
var t = document.getElementById("t");
|
|
t.parentNode.removeChild(t);
|
|
document.documentElement.className = "";
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="doTest()">
|
|
<div>
|
|
<span>a b</span><span id="t" style="display: table-row"></span><span>c d</span>
|
|
</div>
|
|
</body>
|
|
</html>
|