Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/cssom-view/screenLeftTop.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<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>