display-interpolation.html (520B)
1 <!DOCTYPE html> 2 <meta charset="UTF-8"> 3 <title>display interpolation</title> 4 <link rel="help" href="https://www.w3.org/TR/CSS2/visuren.html#display-prop"> 5 <meta name="assert" content="display supports animation"> 6 7 <script src="/resources/testharness.js"></script> 8 <script src="/resources/testharnessreport.js"></script> 9 <script src="/css/support/interpolation-testcommon.js"></script> 10 11 <body> 12 <script> 13 test_not_animatable({ 14 property: 'display', 15 from: 'none', 16 to: 'flex', 17 underlying: 'block' 18 }); 19 </script> 20 </body>