diff options
Diffstat (limited to 'toolkit/obsolete/content/globalOverlay.xul')
-rw-r--r-- | toolkit/obsolete/content/globalOverlay.xul | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/toolkit/obsolete/content/globalOverlay.xul b/toolkit/obsolete/content/globalOverlay.xul deleted file mode 100644 index 90268a8e4..000000000 --- a/toolkit/obsolete/content/globalOverlay.xul +++ /dev/null @@ -1,38 +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/. --> - - -<overlay id="globalOverlay" - xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> - - <script type="application/javascript" src="chrome://global/content/globalOverlay.js"/> - <script type="application/javascript"><![CDATA[ - - function FillInTooltip ( tipElement ) - { - var retVal = false; - var textNode = document.getElementById("TOOLTIP-tooltipText"); - if (textNode) { - while (textNode.hasChildNodes()) - textNode.removeChild(textNode.firstChild); - var tipText = tipElement.getAttribute("tooltiptext"); - if (tipText) { - var node = document.createTextNode(tipText); - textNode.appendChild(node); - retVal = true; - } - } - return retVal; - } - - ]]></script> - - <popupset id="aTooltipSet"> - <tooltip id="aTooltip" class="tooltip" onpopupshowing="return FillInTooltip(document.tooltipNode);"> - <label id="TOOLTIP-tooltipText" class="tooltip-label" flex="1"/> - </tooltip> - </popupset> - -</overlay> |