transform-box-computed.html (788B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Transform Module Level 1: getComputedStyle().transformBox</title> 6 <link rel="help" href="https://drafts.csswg.org/css-transforms/#transform-box-property"> 7 <meta name="assert" content="Computed transform-box is the specified keyword."> 8 <script src="/resources/testharness.js"></script> 9 <script src="/resources/testharnessreport.js"></script> 10 <script src="/css/support/computed-testcommon.js"></script> 11 <body> 12 <div id="target"></div> 13 <script> 14 test_computed_value("transform-box", "content-box"); 15 test_computed_value("transform-box", "border-box"); 16 test_computed_value("transform-box", "fill-box"); 17 test_computed_value("transform-box", "stroke-box"); 18 test_computed_value("transform-box", "view-box"); 19 </script> 20 </body> 21 </html>