test.xul 1.1 KB

1234567891011121314151617181920212223242526
  1. <?xml version="1.0"?>
  2. <!-- This Source Code Form is subject to the terms of the Mozilla Public
  3. - License, v. 2.0. If a copy of the MPL was not distributed with this
  4. - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
  5. <!DOCTYPE window [
  6. ]>
  7. <window id="winTest" title="Title Test" windowtype="Test Type"
  8. xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  9. <dialog id="dia"
  10. xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  11. <vbox id="things">
  12. <checkbox id="testBox" label="box" />
  13. <textbox id="textInput" size="6" value="test" label="input" />
  14. <textbox id="textInput2" size="6" value="test" label="input" />
  15. <textbox id="textInput3" class="asdf" size="6" value="test" label="input" />
  16. </vbox>
  17. <iframe id="iframe" name="iframename" src="chrome://marionette/content/test2.xul"/>
  18. <iframe id="iframe" name="iframename" src="chrome://marionette/content/test_nested_iframe.xul"/>
  19. <hbox id="testXulBox"/>
  20. <browser id='aBrowser' src="chrome://marionette/content/test2.xul"/>
  21. </dialog>
  22. </window>