flexbox_computedstyle_flex-shrink-invalid.html (610B)
1 <!DOCTYPE html> 2 <title>flexbox | computed style | flex-shrink: negative</title> 3 <link rel="author" href="http://opera.com" title="Opera Software"> 4 <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-shrink-property"> 5 <script src="/resources/testharness.js"></script> 6 <script src="/resources/testharnessreport.js"></script> 7 <meta name="flags" content="dom"> 8 <style> 9 body { 10 color: red; 11 flex-shrink: -1; 12 } 13 </style> 14 <div id="log"></div> 15 <script> 16 test(function() { 17 var body = document.body; 18 19 assert_equals(getComputedStyle(body).getPropertyValue("flex-shrink"), 20 "1"); 21 }); 22 </script>