historical.html (575B)
1 <!doctype html> 2 <title>Historical style element features should not be supported</title> 3 <script src="/resources/testharness.js"></script> 4 <script src="/resources/testharnessreport.js"></script> 5 <script> 6 function t(property) { 7 test(function() { 8 assert_false(property in document.createElement('style')); 9 }, 'style.' + property + ' should not be supported'); 10 } 11 // added in https://github.com/whatwg/html/commit/29cf39d2163cfc85b67409f4e10390619ffb2b40 12 // removed in https://github.com/whatwg/html/commit/c2a3b2a2e3db49c14b486a5e99acf7d10cfe8443 13 t('scoped'); 14 </script>