summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/bugs/file_resize_move_windows_1.html
blob: ebeb993b90038a7ab1a5db6442a2a87b4ee1e0e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE HTML>
<html>
<head>
  <title>Helper file for test_resize_move_windows.html</title>
</head>
<body>
<script>
function check(next) {
  var is_range = function(aTest, aValue, aRange, aMsg) {
    window.opener.ok(aTest < aValue + aRange && aTest > aValue - aRange, aMsg + `: ${aTest} vs. ${aValue}`);
  };
  is_range(window.innerWidth, 170, 5, 'parameter width should be taken into account');
  is_range(window.innerHeight, 170, 5, 'parameter height should be taken into account');
  is_range(window.screenX, 65, 5, 'parameter screenX should be taken into account');
  is_range(window.screenY, 65, 5, 'parameter screenY should be taken into account');
  window.opener.checkChangeIsEnabled(window, next);
}
</script>
</body>
</html>