page-property-ignored.html (813B)
1 <!DOCTYPE html> 2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 3 <link rel="help" href="https://www.w3.org/TR/css-page-3/#using-named-pages"> 4 <link rel="match" href="../reference/ref-filled-green-100px-square.xht"> 5 <meta name="assert" content="The 'page' property affects breaking, but only for pagination, and not for multicol. Test that it has no effect inside multicol."> 6 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 7 <div style="width:100px; background:red;"> 8 <div style="columns:3; column-fill:auto; gap:0; width:300px; height:100px;"> 9 <div style="height:50px; background:green;"></div> 10 <div style="page:foo; height:25px; background:green;"></div> 11 <div style="page:bar; height:25px; background:green;"></div> 12 </div> 13 </div>