author | ui.manish <1991manish.kumar@gmail.com> |
Wed, 11 Apr 2018 13:02:19 -0700 | |
changeset 412908 | d2b067678e7272e826a5d75b1ccd525b554b59ee |
parent 412858 | 88f297d206a65910871de724e9c8bb462f04d792 |
child 412909 | 1eb0c09430e905f717da3248029e7af888a0c2df |
push id | 33824 |
push user | ebalazs@mozilla.com |
push date | Thu, 12 Apr 2018 09:39:57 +0000 |
treeherder | mozilla-central@246c614e1605 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | MattN |
bugs | 1453178, 1300784 |
milestone | 61.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
toolkit/content/select-child.js | file | annotate | diff | comparison | revisions |
deleted file mode 100644 --- a/toolkit/content/select-child.js +++ /dev/null @@ -1,26 +0,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/. */ - -ChromeUtils.import("resource://gre/modules/XPCOMUtils.jsm"); - -ChromeUtils.defineModuleGetter(this, "SelectContentHelper", - "resource://gre/modules/SelectContentHelper.jsm"); - -addEventListener("mozshowdropdown", event => { - if (!event.isTrusted) - return; - - if (!SelectContentHelper.open) { - new SelectContentHelper(event.target, {isOpenedViaTouch: false}, this); - } -}); - -addEventListener("mozshowdropdown-sourcetouch", event => { - if (!event.isTrusted) - return; - - if (!SelectContentHelper.open) { - new SelectContentHelper(event.target, {isOpenedViaTouch: true}, this); - } -});