ortho-table-item-001.html (837B)
1 <!DOCTYPE html> 2 <title>ortho table is flex item</title> 3 <link rel="author" title="David Grogan" href="mailto:dgrogan@chromium.org"> 4 <link rel="help" href="https://drafts.csswg.org/css-tables-3/#used-min-width-of-table"> 5 <link rel="help" href="https://drafts.csswg.org/css-flexbox/#ref-for-hypothetical-main-size"> 6 <link rel="match" href="../reference/ref-filled-green-100px-square-only.html"> 7 <meta name="assert" content="Table's specially-defined used min width is honored when the table is an ortho flex item."> 8 9 <p>Test passes if there is a filled green square.</p> 10 <div style="display: flex; width: 0px;"> 11 <div style="display: table; writing-mode: vertical-rl; min-width: 0px; width: 100px; height: 100px; background: green;"> 12 <div style="display: table-cell"> 13 <div style="width: 100px"></div> 14 </div> 15 </div> 16 </div>