mirror of
https://github.com/servo/servo
synced 2026-05-13 10:27:03 +02:00
16 lines
401 B
HTML
16 lines
401 B
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>
|