summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/test/browser_inspector_infobar_04.js
blob: f1b9eca49fc894f9b0f99cdc7b9978e7c8cab4c0 (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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

"use strict";

// Check the position and text content of the highlighter nodeinfo bar under page zoom.

const TEST_URI = URL_ROOT + "doc_inspector_infobar_01.html";

add_task(function* () {
  let {inspector, testActor} = yield openInspectorForURL(TEST_URI);
  let testData = {
    selector: "#top",
    dims: "500" + " \u00D7 " + "100"
  };

  yield testInfobar(testData, inspector, testActor);
  info("Change zoom page to level 2.");
  yield testActor.zoomPageTo(2);
  info("Testing again the infobar after zoom.");
  yield testInfobar(testData, inspector, testActor);
});

function* testInfobar(test, inspector, testActor) {
  info(`Testing ${test.selector}`);

  yield selectAndHighlightNode(test.selector, inspector);

  // Ensure the node is the correct one.
  let id = yield testActor.getHighlighterNodeTextContent(
    "box-model-infobar-id");
  is(id, test.selector, `Node ${test.selector} selected.`);

  let dims = yield testActor.getHighlighterNodeTextContent(
    "box-model-infobar-dimensions");
  is(dims, test.dims, "Node's infobar displays the right dimensions.");
}