definite-height-same-as-step-unit.html (663B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <link rel="author" title="Sammy Gill" href="mailto:sammy.gill@apple.com"> 5 <link rel="help" href="https://drafts.csswg.org/css-rhythm/#block-step-size"> 6 <link rel="match" href="../reference/ref-filled-green-100px-square-only.html"> 7 <meta name="assert" content="Block size that is the same as the step unit should be unchanged."> 8 <style> 9 .container { 10 display: flow-root; 11 width: 100px; 12 background-color: green; 13 } 14 .block-step { 15 height: 100px; 16 block-step-size: 100px; 17 } 18 </style> 19 </head> 20 <body> 21 <p>Test passes if there is a filled green square.</p> 22 <div class="container"> 23 <div class="block-step"></div> 24 </div> 25 </body> 26 </html>