custom-property-transition-transform-list-none.tentative.html (652B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://drafts.css-houdini.org/css-properties-values-api-1"> 3 <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/9522"> 4 <script src="/resources/testharness.js"></script> 5 <script src="/resources/testharnessreport.js"></script> 6 <script src="../resources/utils.js"></script> 7 <div id="target"></div> 8 <script> 9 10 transition_test({ 11 syntax: "<transform-list>|none", 12 from: "none", 13 to: "translateX(200px)", 14 expected: "translateX(200px)", 15 behavior: 'allow-discrete', 16 }, 'A custom property keyword none is not a <transform-list> value and is not interpolable with <transform-list> values'); 17 18 </script>