summaryrefslogtreecommitdiffstats
path: root/dom/xslt/tests/buster/buster-handlers.js
blob: 4e6f85fcc9f4516ee6afd0d907b390d90c812c83 (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
/* -*- indent-tabs-mode: nil; js-indent-level: 4 -*- */
/* 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/. */

var xalan_field;

function onLoad()
{
    view.tree = document.getElementById('out');
    view.boxObject = view.tree.boxObject;
    {  
        view.mIframe = document.getElementById('hiddenHtml');
        view.mIframe.webNavigation.allowPlugins = false;
        view.mIframe.webNavigation.allowJavascript = false;
        view.mIframe.webNavigation.allowMetaRedirects = false;
        view.mIframe.webNavigation.allowImages = false;
    }
    view.database = view.tree.database;
    view.builder = view.tree.builder.QueryInterface(nsIXULTemplateBuilder);
    view.builder.QueryInterface(nsIXULTreeBuilder);
    runItem.prototype.kDatabase = view.database;
    xalan_field = document.getElementById("xalan_rdf");
    var persistedUrl = xalan_field.getAttribute('url');
    if (persistedUrl) {
        view.xalan_url = persistedUrl;
        xalan_field.value = persistedUrl;
    }
    view.setDataSource();
    return true;
}

function onUnload()
{
    if (xalan_field)
        xalan_field.setAttribute('url', xalan_field.value);
}