block-step-insert-computed.html (798B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Rhythm: block-step-insert computed values</title> 5 <link rel="author" title="Sammy Gill" href="sammy.gill@apple.com"> 6 <link rel="help" href="https://drafts.csswg.org/css-rhythm/#block-step-insert"> 7 <meta name="assert" content="Checking computed values for block-step-insert"> 8 <script src="/resources/testharness.js"></script> 9 <script src="/resources/testharnessreport.js"></script> 10 <script src="/css/support/computed-testcommon.js"></script> 11 <style> 12 #target { 13 font-size: 40px; 14 } 15 </style> 16 </head> 17 <body> 18 <div id="target"></div> 19 <script> 20 test_computed_value("block-step-insert", "margin-box"); 21 test_computed_value("block-step-insert", "padding-box"); 22 test_computed_value("block-step-insert", "content-box"); 23 </script> 24 </body> 25 </html>