blob: bf82eac1157aea5fa256861ef04f8da15e6ae89e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!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>
|