https://github.com/web-platform-tests/wpt
Raw File
Tip revision: d74cfc00f15092d6491b01b27616520d5beb5c13 authored by Domenic Denicola on 02 April 2018, 18:58:09 UTC
Fix customElements.upgrade() tests for <template>
Tip revision: d74cfc0
historical.html
<!doctype html>
<meta charset="utf-8">
<title>Historical features</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
test(function() {
  assert_false("ClientRectList" in self);
}, "Support for ClientRectList");

test(function() {
  assert_false("ClientRect" in self);
}, "Support for ClientRect");
</script>
back to top