Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | <?xml version="1.0"?><!-- -*- Mode: xml; tab-width: 2; indent-tabs-mode: nil -*- --> |
michael@0 | 2 | <!-- This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | - License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
michael@0 | 5 | |
michael@0 | 6 | <?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?> |
michael@0 | 7 | <?xml-stylesheet href="XSLTMark.css" type="text/css"?> |
michael@0 | 8 | <window id="XSLTMarkHarness" |
michael@0 | 9 | title="XSLTMark" |
michael@0 | 10 | onload="view.onLoad()" |
michael@0 | 11 | xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
michael@0 | 12 | orient="vertical"> |
michael@0 | 13 | <script type="application/x-javascript" src="XSLTMark-static.js" /> |
michael@0 | 14 | <script type="application/x-javascript" src="XSLTMark-test.js" /> |
michael@0 | 15 | <script type="application/x-javascript" src="XSLTMark-view.js" /> |
michael@0 | 16 | |
michael@0 | 17 | <hbox> |
michael@0 | 18 | <groupbox orient="horizontal"> |
michael@0 | 19 | <caption label="test description file" /> |
michael@0 | 20 | <label value=""/><!-- needed, otherwise groupbox fucks up :-( --> |
michael@0 | 21 | <textbox id="config" persist="value" readonly="true"/> |
michael@0 | 22 | <button label="browse..." oncommand="view.browseForConfig();" /> |
michael@0 | 23 | </groupbox> |
michael@0 | 24 | <groupbox orient="horizontal"> |
michael@0 | 25 | <caption label="test control" /> |
michael@0 | 26 | <button label="run..." |
michael@0 | 27 | oncommand="setTimeout('view.runBenchmark();', 0);" /> |
michael@0 | 28 | <button label="stop" oncommand="view.onStop();" /> |
michael@0 | 29 | </groupbox> |
michael@0 | 30 | <groupbox orient="horizontal"> |
michael@0 | 31 | <caption label="options" /> |
michael@0 | 32 | <label value="responsiveness: "/> |
michael@0 | 33 | <menulist label="sloppy"> |
michael@0 | 34 | <menupopup> |
michael@0 | 35 | <menuitem label="sloppy" selected="true"/> |
michael@0 | 36 | <menuitem label="bad"/> |
michael@0 | 37 | </menupopup> |
michael@0 | 38 | </menulist> |
michael@0 | 39 | </groupbox> |
michael@0 | 40 | </hbox> |
michael@0 | 41 | <hbox> |
michael@0 | 42 | <textbox id="currentStatus" readonly="true" flex="1"/> |
michael@0 | 43 | <progressmeter id="currentProgress" mode="normal" value="0" flex="2"/> |
michael@0 | 44 | <progressmeter id="totalProgress" mode="normal" value="0" flex="2"/> |
michael@0 | 45 | </hbox> |
michael@0 | 46 | <hbox flex="1"> |
michael@0 | 47 | <textbox id="transformOutput" class="out" readonly="true" multiline="true" flex="1"/> |
michael@0 | 48 | </hbox> |
michael@0 | 49 | <hbox flex="1"> |
michael@0 | 50 | <textbox id="transformDetailedOutput" class="out" readonly="true" multiline="true" flex="1"/> |
michael@0 | 51 | </hbox> |
michael@0 | 52 | </window> |