summaryrefslogtreecommitdiffstats
path: root/dom/xml/resources/XMLPrettyPrint.xml
blob: 522d37210ac48d219b4218cce6fa56c6672c5845 (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
39
40
41
42
43
<?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/. -->

<bindings xmlns="http://www.mozilla.org/xbl"
          xmlns:html="http://www.w3.org/1999/xhtml">

  <binding id="prettyprint" bindToUntrustedContent="true">

    <content><html:div id='top' class="highlight"/>
      <html:span style="display: none;"><children/></html:span>
    </content>

    <handlers>
      <handler event="click" button="0">
      <![CDATA[
        try {
          var par = event.originalTarget;
          if (par.nodeName == 'div' && par.className == 'expander') {
            if (par.parentNode.className == 'expander-closed') {
              par.parentNode.className = 'expander-open';
              event.originalTarget.firstChild.data = '\u2212';
            }
            else {
              par.parentNode.className = 'expander-closed';
              event.originalTarget.firstChild.data = '+';
            }
          }
        } catch (e) {
        }
      ]]>
      </handler>
      <handler event="prettyprint-dom-created" allowuntrusted="false">
        <![CDATA[
          document.getAnonymousNodes(this).item(0).appendChild(event.detail);
        ]]>
      </handler>
    </handlers>

  </binding>

</bindings>