Status: PASS | Duration: 11ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-text/white-space/ws-break-spaces-applies-to-013.html
<!DOCTYPE html> <meta charset="UTF-8"> <title>CSS Text Test: 'white-space: break-spaces' does not apply to 'display: table-column' element</title> <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> <link rel="help" href="https://www.w3.org/TR/css-text-3/#white-space-property"> <link rel="match" href="reference/ws-break-spaces-applies-to-012-ref.html"> <meta content="In this test, we verify that 'white-space: break-spaces' does not apply to element with 'display: table-column'." name="assert"> <!-- Testing of 'white-space: break-spaces': ws-break-spaces-applies-to-001: display: inline ws-break-spaces-applies-to-002: display: block ws-break-spaces-applies-to-003: display: list-item ws-break-spaces-applies-to-005: display: inline-block ws-break-spaces-applies-to-006: display: table ws-break-spaces-applies-to-007: display: inline-table ws-break-spaces-applies-to-008: display: table-row-group ws-break-spaces-applies-to-009: display: table-header-group ws-break-spaces-applies-to-010: display: table-footer-group ws-break-spaces-applies-to-011: display: table-row ws-break-spaces-applies-to-012: display: table-column-group ws-break-spaces-applies-to-013: display: table-column ws-break-spaces-applies-to-014: display: table-cell ws-break-spaces-applies-to-015: display: table-caption --> <style> div#cell, td#reference { border: black solid 2px; font-family: monospace; font-size: 32px; width: 4ch; } div#table { display: table; } div#test { display: table-column; white-space: break-spaces; } div#row { display: table-row; } div#cell { display: table-cell; } table { border-spacing: 0px; margin-top: 0.5em; } td#reference { padding: 0px; white-space: normal; } </style> <p>Test passes if the characters inside of each black-bordered rectangles are laid out identically. <div id="table"> <div id="test"></div> <div id="row"> <div id="cell">123 8</div> <!-- 45678 --> <!-- will wrap here ^ --> </div> </div> <table><tr><td id="reference">123 8</table>
/css/css-text/white-space/reference/ws-break-spaces-applies-to-012-ref.html
<!DOCTYPE html> <meta charset="UTF-8"> <title>CSS Reference Test</title> <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> <style> table { border: black solid 2px; border-spacing: 0px; font-family: monospace; font-size: 32px; margin-bottom: 0.25em; } td { padding: 0px; width: 4ch; white-space: normal; } </style> <body> <p>Test passes if the characters inside of each black-bordered rectangles are laid out identically. <table><tr><td>123 8</table> <table><tr><td>123 8</table>