table-has-box-sizing-border-box-001.html (709B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <link rel="author" title="David Grogan" href="dgrogan@chromium.org"> 4 <link rel="help" href="https://drafts.csswg.org/css-tables-3/#mapping"> 5 <link rel="match" href="../reference/ref-filled-green-100px-square-only.html"> 6 <link rel="bookmark" href="https://bugs.chromium.org/p/chromium/issues/detail?id=598134" /> 7 <meta name="assert" content="default box-sizing for <table> is border-box" /> 8 <title> 9 UA stylesheet, <table>, box-sizing 10 </title> 11 12 <style> 13 #table { 14 width: 100px; 15 height: 100%; 16 background: green; 17 padding-bottom: 35px; 18 } 19 </style> 20 21 <p>Test passes if there is a filled green square. 22 </p> 23 <div style="height:100px"> 24 <table id="table"></table> 25 </div>