http://wiki.mozilla.org/Breaking_the_grip_JS_has_on_the_DOM). See also bug 255942 - "Support other scripting languages than JS". Not part of the build - indeed this will not build at all until bug 255942 lands, or the latest patch there is applied. git-svn-id: svn://10.0.0.236/trunk@195705 18797224-902f-48f8-a5cc-f745e15eee43
25 lines
786 B
XML
25 lines
786 B
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
|
|
|
<!-- A container for general test code. Relies on being passed an argument
|
|
for which test to run. Generally it runs the test and closes, only
|
|
staying open when something goes wrong.
|
|
-->
|
|
|
|
<window
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
id="main-window" orient="vertical"
|
|
screenX="100" screenY="100"
|
|
height="300" width="500"
|
|
script-type="application/x-python"
|
|
onload="do_onload(event)"
|
|
onunload="dump('The test runner form is unloading')"
|
|
title="Test Runner"
|
|
>
|
|
<script src="chrome://pyxultest/content/pytester.py"/>
|
|
<textbox id="output-box" style="width:100%" value = ""
|
|
rows="15" multiline="true" flex="1"
|
|
/>
|
|
|
|
</window>
|