Update web-platform-tests to revision ade06500869396f7a46b95bc3553af4ca9c07f31

This commit is contained in:
WPT Sync Bot 2018-10-17 21:30:21 -04:00
parent 9a0404ac5f
commit ed390a659c
51 changed files with 531 additions and 1075 deletions

View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/cssom-view/#dom-window-screenleft">
<link rel="help" href="https://drafts.csswg.org/cssom-view/#dom-window-screentop">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(() => {
assert_equals(typeof window.screenLeft, "number", "screenLeft type");
assert_equals(window.screenLeft, window.screenX, "alias of screenX");
}, "screenLeft");
test(() => {
assert_equals(typeof window.screenTop, "number", "screenTop type");
assert_equals(window.screenTop, window.screenY, "alias of screenY");
}, "screenTop");
</script>