summaryrefslogtreecommitdiffstats
path: root/devtools/client/projecteditor/test/browser_projecteditor_contextmenu_01.js
blob: 44ffe1722ba62181708a056c0626adb1bd68a09e (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
/* 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 context menus append to the correct document.

add_task(function* () {
  let projecteditor = yield addProjectEditorTabForTempDirectory({
    menubar: false
  });
  ok(projecteditor, "ProjectEditor has loaded");

  let contextMenuPopup = projecteditor.document.querySelector("#context-menu-popup");
  let textEditorContextMenuPopup = projecteditor.document.querySelector("#texteditor-context-popup");
  ok(contextMenuPopup, "The menu has loaded in the projecteditor document");
  ok(textEditorContextMenuPopup, "The menu has loaded in the projecteditor document");

  let projecteditor2 = yield addProjectEditorTabForTempDirectory();
  contextMenuPopup = projecteditor2.document.getElementById("context-menu-popup");
  textEditorContextMenuPopup = projecteditor2.document.getElementById("texteditor-context-popup");
  ok(!contextMenuPopup, "The menu has NOT loaded in the projecteditor document");
  ok(!textEditorContextMenuPopup, "The menu has NOT loaded in the projecteditor document");
  ok(content.document.querySelector("#context-menu-popup"), "The menu has loaded in the specified element");
  ok(content.document.querySelector("#texteditor-context-popup"), "The menu has loaded in the specified element");
});