summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/webextensions/content/xpinstallItem.xml
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2018-05-28 13:27:14 -0400
committerMatt A. Tobin <email@mattatobin.com>2018-05-28 13:27:14 -0400
commit258eb6ee9ccefc8a6353a73c6389b042054a36fe (patch)
tree02f02de4e4a20c6ad6d8c9f215c29f4acc3de5d0 /toolkit/mozapps/webextensions/content/xpinstallItem.xml
parent2a36ae70f511d3eaf8594477934f640c6ff50c96 (diff)
downloadUXP-258eb6ee9ccefc8a6353a73c6389b042054a36fe.tar
UXP-258eb6ee9ccefc8a6353a73c6389b042054a36fe.tar.gz
UXP-258eb6ee9ccefc8a6353a73c6389b042054a36fe.tar.lz
UXP-258eb6ee9ccefc8a6353a73c6389b042054a36fe.tar.xz
UXP-258eb6ee9ccefc8a6353a73c6389b042054a36fe.zip
[WebExAM] Deduplicate toolkit/mozapps/webextensions
Diffstat (limited to 'toolkit/mozapps/webextensions/content/xpinstallItem.xml')
-rw-r--r--toolkit/mozapps/webextensions/content/xpinstallItem.xml51
1 files changed, 0 insertions, 51 deletions
diff --git a/toolkit/mozapps/webextensions/content/xpinstallItem.xml b/toolkit/mozapps/webextensions/content/xpinstallItem.xml
deleted file mode 100644
index 5146af84f..000000000
--- a/toolkit/mozapps/webextensions/content/xpinstallItem.xml
+++ /dev/null
@@ -1,51 +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 bindings SYSTEM "chrome://mozapps/locale/xpinstall/xpinstallConfirm.dtd">
-
-<bindings id="xpinstallItemBindings"
- 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="installitem">
- <resources>
- <stylesheet src="chrome://mozapps/skin/xpinstall/xpinstallConfirm.css"/>
- </resources>
- <content>
- <xul:hbox flex="1">
- <xul:vbox align="center" pack="center" class="xpinstallIconContainer">
- <xul:image class="xpinstallItemIcon" xbl:inherits="src=icon"/>
- </xul:vbox>
- <xul:vbox flex="1" pack="center">
- <xul:hbox class="xpinstallItemNameRow" align="center">
- <xul:label class="xpinstallItemName" xbl:inherits="value=name" crop="right"/>
- <xul:label class="xpinstallItemSigned" xbl:inherits="value=cert,signed"/>
- </xul:hbox>
- <xul:hbox class="xpinstallItemDetailsRow" align="center">
- <xul:textbox class="xpinstallItemURL" xbl:inherits="value=url" flex="1" readonly="true" crop="right"/>
- </xul:hbox>
- </xul:vbox>
- </xul:hbox>
- </content>
- <implementation>
- <property name="name" onset="this.setAttribute('name', val); return val;"
- onget="return this.getAttribute('name');"/>
- <property name="cert" onset="this.setAttribute('cert', val); return val;"
- onget="return this.getAttribute('cert');"/>
- <property name="signed" onset="this.setAttribute('signed', val); return val;"
- onget="return this.getAttribute('signed');"/>
- <property name="url" onset="this.setAttribute('url', val); return val;"
- onget="return this.getAttribute('url');"/>
- <property name="icon" onset="this.setAttribute('icon', val); return val;"
- onget="return this.getAttribute('icon');"/>
- <property name="type" onset="this.setAttribute('type', val); return val;"
- onget="return this.getAttribute('type');"/>
- </implementation>
- </binding>
-
-</bindings>
-