summaryrefslogtreecommitdiffstats
path: root/dom/xul/test/398289-resource.xhtml
diff options
context:
space:
mode:
Diffstat (limited to 'dom/xul/test/398289-resource.xhtml')
-rw-r--r--dom/xul/test/398289-resource.xhtml49
1 files changed, 49 insertions, 0 deletions
diff --git a/dom/xul/test/398289-resource.xhtml b/dom/xul/test/398289-resource.xhtml
new file mode 100644
index 0000000000..6702027ef1
--- /dev/null
+++ b/dom/xul/test/398289-resource.xhtml
@@ -0,0 +1,49 @@
+<?xml version="1.0"?>
+
+<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
+
+<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
+<dialog buttonlabelaccept="OK"
+ buttonlabelcancel="Cancel">
+ <style xmlns="http://www.w3.org/1999/xhtml">
+ .tab-middle { outline: none !important }
+ </style>
+
+ <script>
+ document.addEventListener("dialogaccept", function() { alert('OK') });
+ document.addEventListener("dialogcancel", function() { alert('Cancel') });
+ </script>
+
+ <tabbox id="test" flex="1" persist="selectedIndex">
+
+ <tabs>
+ <tab label="One"/>
+ <tab label="Two"/>
+ </tabs>
+
+ <tabpanels flex="1">
+
+ <vbox flex="1">
+ <description>Text for tab ONE</description>
+ <description class="text-link"
+ onclick="window.open('https://bugzilla.mozilla.org/show_bug.cgi?id=398289');">(test case for bug 398289)</description>
+ <tree>
+ <treecols>
+ <treecol label="Header" flex="1"/>
+ </treecols>
+ </tree>
+ </vbox>
+
+ <vbox flex="1">
+ <description>Text for tab TWO</description>
+ <description>(When the document is reloaded, this content gets replaced by the one from the first tab.)</description>
+ </vbox>
+
+ </tabpanels>
+
+ </tabbox>
+
+ <box height="1000"/> <!-- Push dialog buttons out of sight so that the animated default button isn't part of the snapshot -->
+
+</dialog>
+</window>