mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-28 03:17:31 +09:00
46 lines
1.8 KiB
XML
46 lines
1.8 KiB
XML
<?xml version="1.0"?><!-- -*- Mode: xml; tab-width: 2; indent-tabs-mode: nil -*- -->
|
|
<!-- 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/. -->
|
|
|
|
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
|
<?xml-stylesheet href="result-view.css" type="text/css"?>
|
|
|
|
<window id="buster-result-view" title="Xalan testcase details"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
orient="vertical" persist="width height"
|
|
onload="onResultViewLoad()" onunload="onResultViewUnload()">
|
|
<script type="application/x-javascript" src="DumpDOM.js" />
|
|
<script type="application/x-javascript" src="buster-statics.js" />
|
|
<script type="application/x-javascript" src="buster-test.js" />
|
|
<script type="application/x-javascript" src="result-view.js" />
|
|
|
|
<hbox>
|
|
<button class="close" label="close this window"
|
|
oncommand="window.close()" />
|
|
</hbox>
|
|
<vbox flex="1">
|
|
<label class="heading" value="XML Source:" />
|
|
<iframe flex="1" id="src" />
|
|
</vbox>
|
|
<vbox flex="1">
|
|
<label class="heading" value="XSL Source:" />
|
|
<iframe flex="1" id="style" />
|
|
</vbox>
|
|
<vbox flex="1" id="refSourceBox">
|
|
<label class="heading" value="Reference Source:" />
|
|
<iframe flex="1" id="ref" />
|
|
</vbox>
|
|
<vbox flex="2" id="inspectorBox">
|
|
<hbox flex="1">
|
|
<vbox flex="1">
|
|
<label class="heading" value="Reference" />
|
|
<iframe flex="1" id="refInsp" src="result-inspector.xul" />
|
|
</vbox>
|
|
<vbox flex="1">
|
|
<label class="heading" value="Result" />
|
|
<iframe flex="1" id="resInsp" src="result-inspector.xul" />
|
|
</vbox>
|
|
</hbox>
|
|
</vbox>
|
|
</window>
|