- From: Gérard Talbot <www-style@gtalbot.org>
 - Date: Sat, 8 Jan 2011 22:01:10 -0800
 - To: "W3C style mailing list" <www-style@w3.org>
 - Cc: "Public CSS test suite mailing list" <public-css-testsuite@w3.org>, "Arron Eicholz" <arron.eicholz@microsoft.com>
 
Le Sam 8 janvier 2011 21:18, "Gérard Talbot" a écrit :
> Hello all,
>
> Section 17.6.2.1 Border conflict resolution
> http://www.w3.org/TR/CSS21/tables.html#border-conflict-resolution
> Second diagram ( http://www.w3.org/TR/CSS21/images/CSStbl3.png )
> ==============
>
> Actual code
> -----------
> <TABLE style="border-collapse: collapse; border: solid;">
> <TR><TD style="border-right: hidden; border-bottom: hidden">foo</TD>
>     <TD style="border: solid">bar</TD></TR>
> <TR><TD style="border: none">foo</TD>
>     <TD style="border: solid">bar</TD></TR>
> </TABLE>
>
>
> Proposed replacement
> --------------------
> <TABLE style="border-collapse: collapse; border: gray solid;
> background-color: silver;">
> <TR><TD style="border-right: hidden; border-bottom: hidden">foo</TD>
>     <TD style="border: solid">bar</TD></TR>
> <TR><TD style="border: none">foo</TD>
>     <TD style="border: solid">bar</TD></TR>
> </TABLE>
The proposed code replacement should have been rather:
  <TABLE style="border-collapse: collapse; border: gray solid;
background-color: silver;">
  <TR><TD style="border-right: hidden; border-bottom: hidden">foo</TD>
      <TD style="border: gray solid">bar</TD></TR>
  <TR><TD style="border: none">foo</TD>
      <TD style="border: gray solid">bar</TD></TR>
  </TABLE>
Example:
http://www.gtalbot.org/BrowserBugsSection/css21testsuite/CSStbl3-png.html
The diagram
http://www.w3.org/TR/CSS21/images/CSStbl3.png
also seems to be using a font-size of 12px or so.
regards, Gérard
-- 
CSS 2.1 Test suite RC4 (December 10th 2010)
http://test.csswg.org/suites/css2.1/20101210/html4/toc.html
Contributions to CSS 2.1 test suite
http://www.gtalbot.org/BrowserBugsSection/css21testsuite/
Web authors' contributions to CSS 2.1 test suite
http://www.gtalbot.org/BrowserBugsSection/css21testsuite/web-authors-contributions-css21-testsuite.html
Received on Sunday, 9 January 2011 06:02:59 UTC