mirror of
https://github.com/servo/servo.git
synced 2025-08-24 14:48:21 +01:00
Update web-platform-tests to revision ade06500869396f7a46b95bc3553af4ca9c07f31
This commit is contained in:
parent
9a0404ac5f
commit
ed390a659c
51 changed files with 531 additions and 1075 deletions
|
@ -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>
|
Loading…
Add table
Add a link
Reference in a new issue