summaryrefslogtreecommitdiffstats
path: root/dom/browser-element/mochitest/browserElement_BrowserWindowResize.js
blob: 420b4bc34e157fce89df78804a235c0b0ca6d108 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* Any copyright is dedicated to the public domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

// Bug 891763 - Test the mozbrowserresize event
"use strict";

SimpleTest.waitForExplicitFinish();
browserElementTestHelpers.setEnabledPref(true);
browserElementTestHelpers.addPermission();

function runTest() {
  var srcResizeTo = "data:text/html,       \
    <script type='application/javascript'> \
      window.resizeTo(300, 300);           \
    <\/script>                             \
  ";

  var srcResizeBy = "data:text/html,       \
    <script type='application/javascript'> \
      window.resizeBy(-100, -100);         \
    <\/script>                             \
  ";

  var count = 0;
  function checkSize(iframe) {
    count++;
    is(iframe.clientWidth,  400, "iframe width does not change");
    is(iframe.clientHeight, 400, "iframe height does not change");
    if (count == 2) {
      SimpleTest.finish();
    }
  }

  function testIFrameWithSrc(src) {
    var iframe = document.createElement('iframe');
    iframe.setAttribute('mozbrowser', 'true');
    iframe.style = "border:none; width:400px; height:400px;";
    iframe.src = src;
    iframe.addEventListener("mozbrowserresize", function (e) {
      is(e.detail.width,  300, "Received correct resize event width");
      is(e.detail.height, 300, "Received correct resize event height");
      SimpleTest.executeSoon(checkSize.bind(undefined, iframe));
    });
    document.body.appendChild(iframe);
  }

  testIFrameWithSrc(srcResizeTo);
  testIFrameWithSrc(srcResizeBy);
}

addEventListener('testready', runTest);