summaryrefslogtreecommitdiffstats
path: root/browser/components/uitour/test/browser_UITour_annotation_size_attributes.js
blob: dbdeb958956fc6027550f8cac0e630bd40fa3c2e (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
/*
 * Test that width and height attributes don't get set by widget code on the highlight panel.
 */

"use strict";

var gTestTab;
var gContentAPI;
var gContentWindow;
var highlight = document.getElementById("UITourHighlightContainer");
var tooltip = document.getElementById("UITourTooltip");

add_task(setup_UITourTest);

add_UITour_task(function* test_highlight_size_attributes() {
  yield gContentAPI.showHighlight("appMenu");
  yield elementVisiblePromise(highlight,
                              "Highlight should be shown after showHighlight() for the appMenu");
  yield gContentAPI.showHighlight("urlbar");
  yield elementVisiblePromise(highlight, "Highlight should be moved to the urlbar");
  yield new Promise((resolve) => {
    SimpleTest.executeSoon(() => {
      is(highlight.height, "", "Highlight panel should have no explicit height set");
      is(highlight.width, "", "Highlight panel should have no explicit width set");
      resolve();
    });
  });
});

add_UITour_task(function* test_info_size_attributes() {
  yield gContentAPI.showInfo("appMenu", "test title", "test text");
  yield elementVisiblePromise(tooltip, "Tooltip should be shown after showInfo() for the appMenu");
  yield gContentAPI.showInfo("urlbar", "new title", "new text");
  yield elementVisiblePromise(tooltip, "Tooltip should be moved to the urlbar");
  yield new Promise((resolve) => {
    SimpleTest.executeSoon(() => {
      is(tooltip.height, "", "Info panel should have no explicit height set");
      is(tooltip.width, "", "Info panel should have no explicit width set");
      resolve();
    });
  });
});