1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/xslt/tests/buster/result-view.xul Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,46 @@ 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="result-view.css" type="text/css"?> 1.11 + 1.12 +<window id="buster-result-view" title="Xalan testcase details" 1.13 + xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 1.14 + orient="vertical" persist="width height" 1.15 + onload="onResultViewLoad()" onunload="onResultViewUnload()"> 1.16 + <script type="application/x-javascript" src="DumpDOM.js" /> 1.17 + <script type="application/x-javascript" src="buster-statics.js" /> 1.18 + <script type="application/x-javascript" src="buster-test.js" /> 1.19 + <script type="application/x-javascript" src="result-view.js" /> 1.20 + 1.21 + <hbox> 1.22 + <button class="close" label="close this window" 1.23 + oncommand="window.close()" /> 1.24 + </hbox> 1.25 + <vbox flex="1"> 1.26 + <label class="heading" value="XML Source:" /> 1.27 + <iframe flex="1" id="src" /> 1.28 + </vbox> 1.29 + <vbox flex="1"> 1.30 + <label class="heading" value="XSL Source:" /> 1.31 + <iframe flex="1" id="style" /> 1.32 + </vbox> 1.33 + <vbox flex="1" id="refSourceBox"> 1.34 + <label class="heading" value="Reference Source:" /> 1.35 + <iframe flex="1" id="ref" /> 1.36 + </vbox> 1.37 + <vbox flex="2" id="inspectorBox"> 1.38 + <hbox flex="1"> 1.39 + <vbox flex="1"> 1.40 + <label class="heading" value="Reference" /> 1.41 + <iframe flex="1" id="refInsp" src="result-inspector.xul" /> 1.42 + </vbox> 1.43 + <vbox flex="1"> 1.44 + <label class="heading" value="Result" /> 1.45 + <iframe flex="1" id="resInsp" src="result-inspector.xul" /> 1.46 + </vbox> 1.47 + </hbox> 1.48 + </vbox> 1.49 +</window>