1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/xslt/tests/XSLTMark/XSLTMark.xul Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,52 @@ 1.4 +<?xml version="1.0"?><!-- -*- Mode: xml; tab-width: 2; indent-tabs-mode: nil -*- --> 1.5 +<!-- This Source Code Form is subject to the terms of the Mozilla Public 1.6 + - License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 1.8 + 1.9 +<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?> 1.10 +<?xml-stylesheet href="XSLTMark.css" type="text/css"?> 1.11 +<window id="XSLTMarkHarness" 1.12 + title="XSLTMark" 1.13 + onload="view.onLoad()" 1.14 + xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 1.15 + orient="vertical"> 1.16 +<script type="application/x-javascript" src="XSLTMark-static.js" /> 1.17 +<script type="application/x-javascript" src="XSLTMark-test.js" /> 1.18 +<script type="application/x-javascript" src="XSLTMark-view.js" /> 1.19 + 1.20 +<hbox> 1.21 + <groupbox orient="horizontal"> 1.22 + <caption label="test description file" /> 1.23 + <label value=""/><!-- needed, otherwise groupbox fucks up :-( --> 1.24 + <textbox id="config" persist="value" readonly="true"/> 1.25 + <button label="browse..." oncommand="view.browseForConfig();" /> 1.26 + </groupbox> 1.27 + <groupbox orient="horizontal"> 1.28 + <caption label="test control" /> 1.29 + <button label="run..." 1.30 + oncommand="setTimeout('view.runBenchmark();', 0);" /> 1.31 + <button label="stop" oncommand="view.onStop();" /> 1.32 + </groupbox> 1.33 + <groupbox orient="horizontal"> 1.34 + <caption label="options" /> 1.35 + <label value="responsiveness: "/> 1.36 + <menulist label="sloppy"> 1.37 + <menupopup> 1.38 + <menuitem label="sloppy" selected="true"/> 1.39 + <menuitem label="bad"/> 1.40 + </menupopup> 1.41 + </menulist> 1.42 + </groupbox> 1.43 +</hbox> 1.44 +<hbox> 1.45 + <textbox id="currentStatus" readonly="true" flex="1"/> 1.46 + <progressmeter id="currentProgress" mode="normal" value="0" flex="2"/> 1.47 + <progressmeter id="totalProgress" mode="normal" value="0" flex="2"/> 1.48 +</hbox> 1.49 +<hbox flex="1"> 1.50 + <textbox id="transformOutput" class="out" readonly="true" multiline="true" flex="1"/> 1.51 +</hbox> 1.52 +<hbox flex="1"> 1.53 + <textbox id="transformDetailedOutput" class="out" readonly="true" multiline="true" flex="1"/> 1.54 +</hbox> 1.55 +</window> 1.56 \ No newline at end of file