mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
83 lines
2.9 KiB
XML
83 lines
2.9 KiB
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE bindings [
|
|
<!ENTITY % notificationDTD SYSTEM
|
|
"chrome://browser/locale/notification.dtd">
|
|
%notificationDTD;
|
|
]>
|
|
|
|
<bindings
|
|
xmlns="http://www.mozilla.org/xbl"
|
|
xmlns:xbl="http://www.mozilla.org/xbl"
|
|
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
<binding id="notification" extends="chrome://global/content/bindings/notification.xml#notification">
|
|
<resources>
|
|
<stylesheet src="chrome://browser/skin/notification.css"/>
|
|
</resources>
|
|
|
|
<content>
|
|
<xul:hbox class="notification-inner outset" flex="1" xbl:inherits="type">
|
|
<xul:vbox flex="1">
|
|
<xul:hbox anonid="details" align="center" flex="1">
|
|
<xul:description anonid="messageText" class="messageText" flex="1" xbl:inherits="xbl:text=label"/>
|
|
<xul:spacer flex="1"/>
|
|
</xul:hbox>
|
|
<xul:hbox pack="center"
|
|
oncommand="document.getBindingParent(this)._doButtonCommand(event);">
|
|
<children/>
|
|
</xul:hbox>
|
|
</xul:vbox>
|
|
<xul:toolbarbutton ondblclick="event.stopPropagation();"
|
|
class="messageCloseButton tabbable"
|
|
xbl:inherits="hidden=hideclose"
|
|
oncommand="document.getBindingParent(this).close();"/>
|
|
</xul:hbox>
|
|
</content>
|
|
</binding>
|
|
|
|
<binding id="geo-notification" extends="chrome://global/content/bindings/notification.xml#notification">
|
|
|
|
<resources>
|
|
<stylesheet src="chrome://browser/skin/notification.css"/>
|
|
</resources>
|
|
|
|
<content>
|
|
<xul:vbox class="notification-inner outset" flex="1" xbl:inherits="type">
|
|
<xul:hbox anonid="details">
|
|
<xul:description anonid="messageText" class="messageText" flex="1" xbl:inherits="xbl:text=label"/>
|
|
<xul:spacer flex="1"/>
|
|
<xul:label anonid="learnMore"
|
|
class="text-link"
|
|
value="&geolocation.learnMore;"
|
|
onclick="BrowserUI.newTab(this.href); return false;"/>
|
|
</xul:hbox>
|
|
|
|
<xul:hbox pack="center"
|
|
oncommand="document.getBindingParent(this)._doButtonCommand(event);">
|
|
<children/>
|
|
</xul:hbox>
|
|
</xul:vbox>
|
|
</content>
|
|
|
|
<implementation>
|
|
<constructor>
|
|
<![CDATA[
|
|
var formatter = Cc["@mozilla.org/toolkit/URLFormatterService;1"].getService(Ci.nsIURLFormatter);
|
|
var href = formatter.formatURLPref("browser.geolocation.warning.infoURL");
|
|
document.getAnonymousElementByAttribute(this, "anonid", "learnMore").href = href;
|
|
]]>
|
|
</constructor>
|
|
|
|
<field name="_checkbox">
|
|
document.getAnonymousElementByAttribute(this, "anonid", "rememberChoice")
|
|
</field>
|
|
|
|
<property name="rememberChoice"
|
|
onget="return this._checkbox.checked;"
|
|
readonly="true"/>
|
|
|
|
</implementation>
|
|
</binding>
|
|
|
|
</bindings>
|