summaryrefslogtreecommitdiff
path: root/browser/devtools/markupview/test/browser_markupview_html_edit_03.js
blob: 2dd6dc2995ed6234768974a8a836c37e65350b91 (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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/* vim: set ts=2 et sw=2 tw=80: */
/* Any copyright is dedicated to the Public Domain.
 http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Test that outerHTML editing keybindings work as expected and that *special*
// elements like <html>, <body> and <head> can be edited correctly.

const TEST_URL = "data:text/html," +
  "<!DOCTYPE html>" +
  "<head><meta charset='utf-8' /></head>" +
  "<body>" +
  "<div id=\"keyboard\"></div>" +
  "</body>" +
  "</html>";
const SELECTOR = "#keyboard";
const OLD_HTML = '<div id="keyboard"></div>';
const NEW_HTML = '<div id="keyboard">Edited</div>';

add_task(function*() {
  let {inspector} = yield addTab(TEST_URL).then(openInspector);

  inspector.markup._frame.focus();

  info("Checking that pressing escape cancels edits");
  yield testEscapeCancels(inspector);

  info("Checking that pressing F2 commits edits");
  yield testF2Commits(inspector);

  info("Checking that editing the <body> element works like other nodes");
  yield testBody(inspector);

  info("Checking that editing the <head> element works like other nodes");
  yield testHead(inspector);

  info("Checking that editing the <html> element works like other nodes");
  yield testDocumentElement(inspector);

  info("Checking (again) that editing the <html> element works like other nodes");
  yield testDocumentElement2(inspector);
});

function testEscapeCancels(inspector) {
  let def = promise.defer();
  let node = getNode(SELECTOR);

  selectNode(SELECTOR, inspector).then(() => {
    inspector.markup.htmlEditor.on("popupshown", function onPopupShown() {
      inspector.markup.htmlEditor.off("popupshown", onPopupShown);

      ok(inspector.markup.htmlEditor._visible, "HTML Editor is visible");
      is(node.outerHTML, OLD_HTML, "The node is starting with old HTML.");

      inspector.markup.htmlEditor.on("popuphidden", function onPopupHidden() {
        inspector.markup.htmlEditor.off("popuphidden", onPopupHidden);
        ok(!inspector.markup.htmlEditor._visible, "HTML Editor is not visible");

        let node = getNode(SELECTOR);
        is(node.outerHTML, OLD_HTML, "Escape cancels edits");
        def.resolve();
      });

      inspector.markup.htmlEditor.editor.setText(NEW_HTML);

      EventUtils.sendKey("ESCAPE", inspector.markup.htmlEditor.doc.defaultView);
    });

    EventUtils.sendKey("F2", inspector.markup._frame.contentWindow);
  });

  return def.promise;
}

function testF2Commits(inspector) {
  let def = promise.defer();
  let node = getNode(SELECTOR);

  inspector.markup.htmlEditor.on("popupshown", function onPopupShown() {
    inspector.markup.htmlEditor.off("popupshown", onPopupShown);

    ok(inspector.markup.htmlEditor._visible, "HTML Editor is visible");
    is(node.outerHTML, OLD_HTML, "The node is starting with old HTML.");

    inspector.once("markupmutation", (e, aMutations) => {
      ok(!inspector.markup.htmlEditor._visible, "HTML Editor is not visible");

      let node = getNode(SELECTOR);
      is(node.outerHTML, NEW_HTML, "F2 commits edits - the node has new HTML.");
      def.resolve();
    });

    inspector.markup.htmlEditor.editor.setText(NEW_HTML);
    EventUtils.sendKey("F2", inspector.markup._frame.contentWindow);
  });

  inspector.markup._frame.contentDocument.documentElement.focus();
  EventUtils.sendKey("F2", inspector.markup._frame.contentWindow);

  return def.promise;
}

function* testBody(inspector) {
  let body = getNode("body");
  let bodyHTML = '<body id="updated"><p></p></body>';
  let bodyFront = yield getNodeFront("body", inspector);
  let doc = content.document;

  let onReselected = inspector.markup.once("reselectedonremoved");
  yield inspector.markup.updateNodeOuterHTML(bodyFront, bodyHTML, body.outerHTML);
  yield onReselected;

  is(getNode("body").outerHTML, bodyHTML, "<body> HTML has been updated");
  is(doc.querySelectorAll("head").length, 1, "no extra <head>s have been added");

  yield inspector.once("inspector-updated");
}

function* testHead(inspector) {
  let head = getNode("head");
  yield selectNode("head", inspector);

  let headHTML = '<head id="updated"><title>New Title</title><script>window.foo="bar";</script></head>';
  let headFront = yield getNodeFront("head", inspector);
  let doc = content.document;

  let onReselected = inspector.markup.once("reselectedonremoved");
  yield inspector.markup.updateNodeOuterHTML(headFront, headHTML, head.outerHTML);
  yield onReselected;

  is(doc.title, "New Title", "New title has been added");
  is(doc.defaultView.foo, undefined, "Script has not been executed");
  is(doc.querySelector("head").outerHTML, headHTML, "<head> HTML has been updated");
  is(doc.querySelectorAll("body").length, 1, "no extra <body>s have been added");

  yield inspector.once("inspector-updated");
}

function* testDocumentElement(inspector) {
  let doc = content.document;
  let docElement = doc.documentElement;
  let docElementHTML = '<html id="updated" foo="bar"><head><title>Updated from document element</title><script>window.foo="bar";</script></head><body><p>Hello</p></body></html>';
  let docElementFront = yield inspector.markup.walker.documentElement();

  let onReselected = inspector.markup.once("reselectedonremoved");
  yield inspector.markup.updateNodeOuterHTML(docElementFront, docElementHTML, docElement.outerHTML);
  yield onReselected;

  is(doc.title, "Updated from document element", "New title has been added");
  is(doc.defaultView.foo, undefined, "Script has not been executed");
  is(doc.documentElement.id, "updated", "<html> ID has been updated");
  is(doc.documentElement.className, "", "<html> class has been updated");
  is(doc.documentElement.getAttribute("foo"), "bar", "<html> attribute has been updated");
  is(doc.documentElement.outerHTML, docElementHTML, "<html> HTML has been updated");
  is(doc.querySelectorAll("head").length, 1, "no extra <head>s have been added");
  is(doc.querySelectorAll("body").length, 1, "no extra <body>s have been added");
  is(doc.body.textContent, "Hello", "document.body.textContent has been updated");
}

function* testDocumentElement2(inspector) {
  let doc = content.document;
  let docElement = doc.documentElement;
  let docElementHTML = '<html class="updated" id="somethingelse"><head><title>Updated again from document element</title><script>window.foo="bar";</script></head><body><p>Hello again</p></body></html>';
  let docElementFront = yield inspector.markup.walker.documentElement();

  let onReselected = inspector.markup.once("reselectedonremoved");
  inspector.markup.updateNodeOuterHTML(docElementFront, docElementHTML, docElement.outerHTML);
  yield onReselected;

  is(doc.title, "Updated again from document element", "New title has been added");
  is(doc.defaultView.foo, undefined, "Script has not been executed");
  is(doc.documentElement.id, "somethingelse", "<html> ID has been updated");
  is(doc.documentElement.className, "updated", "<html> class has been updated");
  is(doc.documentElement.getAttribute("foo"), null, "<html> attribute has been removed");
  is(doc.documentElement.outerHTML, docElementHTML, "<html> HTML has been updated");
  is(doc.querySelectorAll("head").length, 1, "no extra <head>s have been added");
  is(doc.querySelectorAll("body").length, 1, "no extra <body>s have been added");
  is(doc.body.textContent, "Hello again", "document.body.textContent has been updated");
}