flow-tolerance-valid.html (953B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Grid Lanes: flow-tolerance parsing</title> 6 <link rel="help" href="https://drafts.csswg.org/css-grid-3"> 7 <link rel="author" title="Sam Davis Omekara Jr." href="mailto:samomekarajr@microsoft.com"> 8 <meta name="assert" content="flow-tolerance supports the full grammar 'normal | <length-percentage>'."> 9 <script src="/resources/testharness.js"></script> 10 <script src="/resources/testharnessreport.js"></script> 11 <script src="/css/support/parsing-testcommon.js"></script> 12 </head> 13 <body> 14 <script> 15 test_valid_value("flow-tolerance", "normal"); 16 test_valid_value("flow-tolerance", "infinite"); 17 test_valid_value("flow-tolerance", "initial"); 18 19 test_valid_value("flow-tolerance", "0", "0px"); 20 test_valid_value("flow-tolerance", "1px"); 21 test_valid_value("flow-tolerance", "calc(2em + 3ex)"); 22 test_valid_value("flow-tolerance", "4%"); 23 test_valid_value("flow-tolerance", "5vmin"); 24 </script> 25 </body> 26 </html>