summaryrefslogtreecommitdiff
path: root/browser/devtools/styleeditor/test/browser_styleeditor_reload.js
blob: 267fbcffeb08dffe53ce472778b2bc225b26e984 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/* vim: set ts=2 et sw=2 tw=80: */
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

const TESTCASE_URI = TEST_BASE_HTTPS + "simple.html";
const NEW_URI = TEST_BASE_HTTPS + "media.html";

const LINE_NO = 5;
const COL_NO = 3;

let gContentWin;
let gUI;

function test()
{
  waitForExplicitFinish();

  addTabAndOpenStyleEditor(function(panel) {
    gContentWin = gBrowser.selectedTab.linkedBrowser.contentWindow.wrappedJSObject;
    gUI = panel.UI;

    let count = 0;
    gUI.on("editor-added", function editorAdded(event, editor) {
      if (++count == 2) {
        gUI.off("editor-added", editorAdded);
        gUI.editors[0].getSourceEditor().then(runTests);
      }
    })
  });

  content.location = TESTCASE_URI;
}

function runTests()
{
  let count = 0;
  gUI.once("editor-selected", (event, editor) => {
    editor.getSourceEditor().then(() => {
      info("selected second editor, about to reload page");
      reloadPage();

      gUI.on("editor-added", function editorAdded(event, editor) {
        if (++count == 2) {
          gUI.off("editor-added", editorAdded);
          gUI.editors[1].getSourceEditor().then(testRemembered);
        }
      })
    });
  });
  gUI.selectStyleSheet(gUI.editors[1].styleSheet.href, LINE_NO, COL_NO);
}

function testRemembered()
{
  is(gUI.selectedEditor, gUI.editors[1], "second editor is selected");

  let {line, col} = gUI.selectedEditor.sourceEditor.getCaretPosition();
  is(line, LINE_NO, "correct line selected");
  is(col, COL_NO, "correct column selected");

  testNewPage();
}

function testNewPage()
{
  let count = 0;
  gUI.on("editor-added", function editorAdded(event, editor) {
    info("editor added here")
    if (++count == 2) {
      gUI.off("editor-added", editorAdded);
      gUI.editors[0].getSourceEditor().then(testNotRemembered);
    }
  })

  info("navigating to a different page");
  navigatePage();
}

function testNotRemembered()
{
  is(gUI.selectedEditor, gUI.editors[0], "first editor is selected");

  let {line, col} = gUI.selectedEditor.sourceEditor.getCaretPosition();
  is(line, 0, "first line is selected");
  is(col, 0, "first column is selected");

  gUI = null;
  finish();
}

function reloadPage()
{
  gContentWin.location.reload();
}

function navigatePage()
{
  gContentWin.location = NEW_URI;
}