[Bug 13915] The suggested presentation differs from the common (if not universal) browser behavior for a table when no attributes and no author style sheets are used. The common default is to render the table with no borders. However, the CSS rules described here imp

http://www.w3.org/Bugs/Public/show_bug.cgi?id=13915

L. David Baron <dbaron@dbaron.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
                 CC|                            |dbaron@dbaron.org
         Resolution|FIXED                       |

--- Comment #3 from L. David Baron <dbaron@dbaron.org> 2011-10-12 20:33:44 UTC ---
That solution to this issue is not compatible with implementations --
implementations default to tables having neither a border-width style (the
initial value is 'medium') nor a border-style style (the initial value is
'none').  Using presentational attributes on the table can set these
properties.

In particular, Gecko, WebKit, and Opera interoperate on this test:
http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C!DOCTYPE%20html%3E%0A%3Ctable%3E%3Ctr%3E%3Ctd%3Eno%20style%3C%2Ftable%3E%0A%3Ctable%20style%3D%22border-width%3A%203px%22%3E%3Ctr%3E%3Ctd%3Eborder-width%3A3px%3C%2Ftable%3E%0A%3Ctable%20style%3D%22border-style%3A%20solid%22%3E%3Ctr%3E%3Ctd%3Eborder-style%3Asolid%3C%2Ftable%3E%0A
which shows that what keeps table borders hidden initially is the border-style
being none, not the border-width being zero (just like for pretty much
everything else that doesn't have a border by default).

-- 
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Wednesday, 12 October 2011 20:33:49 UTC