summaryrefslogtreecommitdiffstats
path: root/addon-sdk/source/test/context-menu/framescript.js
blob: c3e038a5a2cf6f594a11dcc3d5095c61cbf1700d (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
/* 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";

const Ci = Components.interfaces;

addMessageListener("sdk/test/context-menu/open", message => {
  const {data, name} = message;
  const target = data.target && content.document.querySelector(data.target);
  if (target) {
    target.scrollIntoView();
  }
  const rect = target ? target.getBoundingClientRect() :
               {left:0, top:0, width:0, height:0};


  content.
    QueryInterface(Ci.nsIInterfaceRequestor).
    getInterface(Ci.nsIDOMWindowUtils).
    sendMouseEvent("contextmenu",
                   rect.left + (rect.width / 2),
                   rect.top + (rect.height / 2),
                   2, 1, 0);
});

addMessageListener("sdk/test/context-menu/select", message => {
  const {data, name} = message;
  const {document} = content;
  if (data) {
    if (typeof(data) === "string") {
      const target = document.querySelector(data);
      document.getSelection().selectAllChildren(target);
    } else {
      const target = document.querySelector(data.target);
      target.focus();
      target.setSelectionRange(data.start, data.end);
    }
  } else {
    document.getSelection().collapse(document.documentElement, 0);
  }

  sendAsyncMessage("sdk/test/context-menu/selected");
});