mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
0b5e6a2535
--HG-- rename : layout/reftests/table-anonymous-boxes/white-space-1.html => layout/reftests/table-anonymous-boxes/white-space-7.html
21 lines
550 B
HTML
21 lines
550 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
function doTest() {
|
|
var t = document.getElementById("t1");
|
|
t.parentNode.removeChild(t);
|
|
t = document.getElementById("t2");
|
|
t.parentNode.removeChild(t);
|
|
document.documentElement.className = "";
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="doTest()">
|
|
<span>
|
|
<span>a</span><span style="display: table-cell" id="t2">e</span>
|
|
<span style="display: table-cell" id="t1">f</span><span>bc d</span>
|
|
</span>
|
|
</body>
|
|
</html>
|