Bug 162063. Remove pseudo-frames as needed when the frame that needs them is removed from the frame tree. r=bernd, sr=roc. Also fixes bug 97506, bug 143397, bug 156888, bug 277995, bug 293576, bug 315146, bug 338735, bug 339388, bug 407115, 473824.
2009-03-23 11:08:03 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html class="reftest-wait">
|
|
|
|
<head>
|
2010-01-27 15:46:48 -08:00
|
|
|
<title>CSS 2.1 Test Suite: anonymous table boxes</title>
|
|
|
|
<link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu" />
|
|
|
|
<link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" />
|
|
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
|
|
|
|
<meta name="flags" content="dom" />
|
Bug 162063. Remove pseudo-frames as needed when the frame that needs them is removed from the frame tree. r=bernd, sr=roc. Also fixes bug 97506, bug 143397, bug 156888, bug 277995, bug 293576, bug 315146, bug 338735, bug 339388, bug 407115, 473824.
2009-03-23 11:08:03 -07:00
|
|
|
<script>
|
|
|
|
function doTest() {
|
|
|
|
var t = document.getElementById("t");
|
|
|
|
t.parentNode.removeChild(t);
|
|
|
|
document.documentElement.className = "";
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body style="font-family: monospace" onload="doTest()">
|
|
|
|
<span style="display: table-row-group">
|
|
|
|
<span style="display: table-cell">Row 1, Col 1</span>
|
|
|
|
<span style="display: table-cell">Row 1, Col 2</span>
|
|
|
|
<span style="display: table-cell">Row 1, Col 3</span>
|
|
|
|
</span>
|
|
|
|
<span style="display: table-row-group">
|
|
|
|
<span style="display: table-cell">Row 22, Col 1</span>
|
|
|
|
<span id="t" style="display: table-caption">To be removed</span>
|
|
|
|
<span style="display: table-cell">Row 22, Col 2</span>
|
|
|
|
<span style="display: table-cell">Row 22, Col 3</span>
|
|
|
|
</span>
|
|
|
|
<span style="display: table-row-group">
|
|
|
|
<span style="display: table-cell">Row 333, Col 1</span>
|
|
|
|
<span style="display: table-cell">Row 333, Col 2</span>
|
|
|
|
<span style="display: table-cell">Row 333, Col 3</span>
|
|
|
|
</span>
|
|
|
|
</body>
|
|
|
|
</html>
|