[RC4] Question on row-visibility-004

Arron,

http://test.csswg.org/suites/css2.1/20101210/html4/row-visibility-004.htm

<meta name="assert" content="A row-spanning cell which originates in a
collapsed row is completely collapsed along with its row.">

Where exactly do you read this in the spec?

Let's say I have this code:

table {border-spacing: 0;}

tr#collapsed-row {visibility: collapse;}

(...)

        <table>
            <tr id="collapsed-row">
                <td>FA</td>
                <td rowspan="2">IL<br>O2</td>
            </tr>
            <tr>
                <td>O1</td>
            </tr>
        </table>

Why shouldn't I see  "O1O2"?

regards, Gérard
-- 
Contributions to the CSS 2.1 test suite:
http://www.gtalbot.org/BrowserBugsSection/css21testsuite/

CSS 2.1 test suite (RC4; December 10th 2010):
http://test.csswg.org/suites/css2.1/20101210/html4/toc.html

CSS 2.1 test suite contributors:
http://test.csswg.org/source/contributors/

Received on Friday, 14 January 2011 03:02:28 UTC