[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

--- Comment #10 from Ian 'Hixie' Hickson <ian@hixie.ch> 2011-10-14 18:49:46 UTC ---
Hm, yes. The spec handles the second case already, but for the first case, I
need to make sure border-style remains 'none' otherwise the first table here
would get table and cell borders:

<!DOCTYPE HTML>
<style>table, td { border-width: 10px; }</style>
<table border="0"><tr><td>X</table>
<table border="x"><tr><td>X</table>
<table border="1"><tr><td>X</table>

More prose to add, I guess.

Oddly IE doesn't give a table even for the third table above. Dunno what that's
about.

-- 
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 Friday, 14 October 2011 18:49:50 UTC