summaryrefslogtreecommitdiffstats
path: root/toolkit/content/globalOverlay.xul
blob: 90268a8e49ac67e1ed320badb45488509663183b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?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>