Revision 9dcebcba39eba001a6f4a525646712021b55a685 authored by Robert Ma on 22 March 2018, 19:02:06 UTC, committed by Robert Ma on 22 March 2018, 20:18:25 UTC
1 parent f94a28a
Raw File
historical.html
<!doctype html>
<title>Historical non-standard features</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
test(function() {
  assert_false("getMatchedCSSRules" in window);
}, "getMatchedCSSRules() should not exist");

test(function() {
  assert_false("webkitHidden" in window);
}, "webkitHidden should not exist");

test(function() {
  assert_false("webkitVisibilityState" in window);
}, "webkitVisibilityState should not exist");
</script>
back to top