summaryrefslogtreecommitdiffstats
path: root/browser/components/places/tests/chrome/test_bug427633_no_newfolder_if_noip.xul
blob: b659b2b468a15016458cb8eed11a1411d27f5774 (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
<?xml version="1.0"?>

<!-- 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/. -->

<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
<?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css"
                 type="text/css"?>

<?xml-stylesheet href="chrome://browser/skin/places/editBookmarkOverlay.css"?>
<?xml-stylesheet href="chrome://browser/content/places/places.css"?>
<?xml-stylesheet href="chrome://browser/skin/places/places.css"?>

<?xul-overlay href="chrome://browser/content/places/placesOverlay.xul"?>
<?xul-overlay href="chrome://browser/content/places/editBookmarkOverlay.xul"?>

<!DOCTYPE window [
  <!ENTITY % editBookmarkOverlayDTD SYSTEM "chrome://browser/locale/places/editBookmarkOverlay.dtd">
  %editBookmarkOverlayDTD;
]>

<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        title="Bug 427633 - Disable creating a New Folder in the bookmarks dialogs if insertionPoint is invalid"
        onload="runTest();">

  <script type="application/javascript"
          src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js" />
  <script type="application/javascript"
          src="chrome://browser/content/places/editBookmarkOverlay.js"/>

  <body xmlns="http://www.w3.org/1999/xhtml" />

  <vbox id="editBookmarkPanelContent"/>

  <script type="application/javascript">
  <![CDATA[

     /**
      * Bug 427633 - Disable creating a New Folder in the bookmarks dialogs if
      * insertionPoint is invalid.
      */

    function runTest() {
      SimpleTest.waitForExplicitFinish();

      Task.spawn(function* () {
        // Add a bookmark.
        let bm = yield PlacesUtils.bookmarks.insert({
          parentGuid: PlacesUtils.bookmarks.toolbarGuid,
          url: "http://www.example.com/",
          index: PlacesUtils.bookmarks.DEFAULT_INDEX,
          type: PlacesUtils.bookmarks.TYPE_BOOKMARK,
          title: "mozilla"
        });

        // Init panel.
        ok(gEditItemOverlay, "gEditItemOverlay is in context");
        let node = yield PlacesUIUtils.promiseNodeLikeFromFetchInfo(bm);
        gEditItemOverlay.initPanel({ node });
        ok(gEditItemOverlay.initialized, "gEditItemOverlay is initialized");

        let tree = gEditItemOverlay._element("folderTree");
        yield openFolderTree(tree);

        tree.view.selection.clearSelection();
        ok(document.getElementById("editBMPanel_newFolderButton").disabled,
           "New folder button is disabled if there's no selection");

        // Cleanup.
        yield PlacesUtils.bookmarks.remove(bm.guid);
      }).then(() => SimpleTest.finish());
    }

    function openFolderTree(tree) {
      return new Promise(resolve => {
        tree.addEventListener("DOMAttrModified", function onAttrModified(event) {
          if (event.attrName == "place") {
            tree.removeEventListener("DOMAttrModified", onAttrModified);
            resolve();
          }
        });

        // Open the folder tree.
        document.getElementById("editBMPanel_foldersExpander").doCommand();
      });
    }
  ]]>
  </script>

</window>