summaryrefslogtreecommitdiffstats
path: root/dom/browser-element/mochitest/browserElement_FirstPaint.js
blob: ad67abc3aac0122c6d88465081db48bbd16ed416 (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
/* Any copyright is dedicated to the public domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

// Bug 787378 - Add mozbrowserfirstpaint event.
"use strict";

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

function runTest() {
  var iframe = document.createElement('iframe');
  iframe.setAttribute('mozbrowser', 'true');

  var gotFirstPaint = false;
  var gotFirstLocationChange = false;
  iframe.addEventListener('mozbrowserfirstpaint', function(e) {
    ok(!gotFirstPaint, "Got only one first paint.");
    gotFirstPaint = true;

    if (gotFirstLocationChange) {
      iframe.src = browserElementTestHelpers.emptyPage1 + '?2';
    }
  });

  iframe.addEventListener('mozbrowserlocationchange', function(e) {
    if (e.detail.url == browserElementTestHelpers.emptyPage1) {
      gotFirstLocationChange = true;
      if (gotFirstPaint) {
        iframe.src = browserElementTestHelpers.emptyPage1 + '?2';
      }
    }
    else if (e.detail.url.endsWith('?2')) {
      SimpleTest.finish();
    }
  });

  document.body.appendChild(iframe);

  iframe.src = browserElementTestHelpers.emptyPage1;
}

addEventListener('testready', runTest);