historical.html (535B)
1 <!doctype html> 2 <title>Historical non-standard features</title> 3 <script src="/resources/testharness.js"></script> 4 <script src="/resources/testharnessreport.js"></script> 5 <div id="log"></div> 6 <script> 7 test(function() { 8 assert_false("getMatchedCSSRules" in window); 9 }, "getMatchedCSSRules() should not exist"); 10 11 test(function() { 12 assert_false("webkitHidden" in window); 13 }, "webkitHidden should not exist"); 14 15 test(function() { 16 assert_false("webkitVisibilityState" in window); 17 }, "webkitVisibilityState should not exist"); 18 </script>