summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/cssom-view/screenLeftTop.html
blob: 58d868866eb275724c996bdc1a636ff6173d75a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>