mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
307ccebf4c
--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>
|