summaryrefslogtreecommitdiffstats
path: root/components/preferences/handlers.xml
diff options
context:
space:
mode:
authorThomas Groman <tgroman@nuegia.net>2020-04-20 20:49:37 -0700
committerThomas Groman <tgroman@nuegia.net>2020-04-20 20:49:37 -0700
commitf9cab004186edb425a9b88ad649726605080a17c (patch)
treee2dae51d3144e83d097a12e7a1499e3ea93f90be /components/preferences/handlers.xml
parentf428692de8b59ab89a66502c079e1823dfda8aeb (diff)
downloadwebbrowser-f9cab004186edb425a9b88ad649726605080a17c.tar
webbrowser-f9cab004186edb425a9b88ad649726605080a17c.tar.gz
webbrowser-f9cab004186edb425a9b88ad649726605080a17c.tar.lz
webbrowser-f9cab004186edb425a9b88ad649726605080a17c.tar.xz
webbrowser-f9cab004186edb425a9b88ad649726605080a17c.zip
move browser to webbrowser/
Diffstat (limited to 'components/preferences/handlers.xml')
-rw-r--r--components/preferences/handlers.xml81
1 files changed, 0 insertions, 81 deletions
diff --git a/components/preferences/handlers.xml b/components/preferences/handlers.xml
deleted file mode 100644
index 5fb915c..0000000
--- a/components/preferences/handlers.xml
+++ /dev/null
@@ -1,81 +0,0 @@
-<?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/. -->
-
-<!DOCTYPE overlay [
- <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
- <!ENTITY % applicationsDTD SYSTEM "chrome://browser/locale/preferences/applications.dtd">
- %brandDTD;
- %applicationsDTD;
-]>
-
-<bindings id="handlerBindings"
- xmlns="http://www.mozilla.org/xbl"
- xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
- xmlns:xbl="http://www.mozilla.org/xbl">
-
- <binding id="handler-base" extends="chrome://global/content/bindings/richlistbox.xml#richlistitem">
- <implementation>
- <property name="type" readonly="true">
- <getter>
- return this.getAttribute("type");
- </getter>
- </property>
- </implementation>
- </binding>
-
- <binding id="handler" extends="chrome://browser/content/preferences/handlers.xml#handler-base">
- <content>
- <xul:hbox flex="1" equalsize="always">
- <xul:hbox flex="1" align="center" xbl:inherits="tooltiptext=typeDescription">
- <xul:image src="moz-icon://goat?size=16" class="typeIcon"
- xbl:inherits="src=typeIcon" height="16" width="16"/>
- <xul:label flex="1" crop="end" xbl:inherits="value=typeDescription"/>
- </xul:hbox>
- <xul:hbox flex="1" align="center" xbl:inherits="tooltiptext=actionDescription">
- <xul:image xbl:inherits="src=actionIcon" height="16" width="16" class="actionIcon"/>
- <xul:label flex="1" crop="end" xbl:inherits="value=actionDescription"/>
- </xul:hbox>
- </xul:hbox>
- </content>
- </binding>
-
- <binding id="handler-selected" extends="chrome://browser/content/preferences/handlers.xml#handler-base">
- <content>
- <xul:hbox flex="1" equalsize="always">
- <xul:hbox flex="1" align="center" xbl:inherits="tooltiptext=typeDescription">
- <xul:image src="moz-icon://goat?size=16" class="typeIcon"
- xbl:inherits="src=typeIcon" height="16" width="16"/>
- <xul:label flex="1" crop="end" xbl:inherits="value=typeDescription"/>
- </xul:hbox>
- <xul:hbox flex="1">
- <xul:menulist class="actionsMenu" flex="1" crop="end" selectedIndex="1"
- xbl:inherits="tooltiptext=actionDescription"
- oncommand="gApplicationsPane.onSelectAction(event.originalTarget)">
- <xul:menupopup/>
- </xul:menulist>
- </xul:hbox>
- </xul:hbox>
- </content>
-
- <implementation>
- <constructor>
- gApplicationsPane.rebuildActionsMenu();
- </constructor>
- </implementation>
-
- </binding>
-
- <binding id="offlineapp"
- extends="chrome://global/content/bindings/listbox.xml#listitem">
- <content>
- <children>
- <xul:listcell xbl:inherits="label=origin"/>
- <xul:listcell xbl:inherits="label=usage"/>
- </children>
- </content>
- </binding>
-
-</bindings>