resize-computed.html (772B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS UI Level 3: getComputedStyle().resize</title> 6 <link rel="help" href="https://drafts.csswg.org/css-ui-3/#resize"> 7 <meta name="assert" content="resize computed value is as specified."> 8 <script src="/resources/testharness.js"></script> 9 <script src="/resources/testharnessreport.js"></script> 10 <script src="/css/support/computed-testcommon.js"></script> 11 </head> 12 <body> 13 <div id="target"></div> 14 <script> 15 test_computed_value("resize", "none"); 16 test_computed_value("resize", "both"); 17 test_computed_value("resize", "horizontal"); 18 test_computed_value("resize", "vertical"); 19 test_pseudo_computed_value("::before", "resize", "both"); 20 test_pseudo_computed_value("::after", "resize", "vertical"); 21 </script> 22 </body> 23 </html>