summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/374719-1.xul
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /layout/reftests/bugs/374719-1.xul
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/reftests/bugs/374719-1.xul')
-rw-r--r--layout/reftests/bugs/374719-1.xul74
1 files changed, 74 insertions, 0 deletions
diff --git a/layout/reftests/bugs/374719-1.xul b/layout/reftests/bugs/374719-1.xul
new file mode 100644
index 000000000..f007aa729
--- /dev/null
+++ b/layout/reftests/bugs/374719-1.xul
@@ -0,0 +1,74 @@
+<?xml version="1.0"?>
+
+<?xml-stylesheet href="chrome://global/skin/global.css"
+ type="text/css"?>
+<?xml-stylesheet href="374719-1-css.css"
+ type="text/css"?>
+
+<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
+ onload="test2()">
+
+ <script>
+ function test2()
+ {
+ var r = document.getElementById('rbox');
+
+ const XULNS =
+ "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
+
+ var item = document.createElementNS(XULNS, "gridlikeitem");
+ item.setAttribute("value", "aValue");
+
+ var cell1 = document.createElementNS(XULNS, "gridlikecell");
+ var label1 = document.createElementNS(XULNS, "label");
+ label1.setAttribute("value", "aLabel1");
+ label1.setAttribute("flex", "1");
+ label1.setAttribute("crop", "end");
+ cell1.appendChild(label1);
+ item.appendChild(cell1);
+
+ var cell2 = document.createElementNS(XULNS, "gridlikecell");
+ var label2 = document.createElementNS(XULNS, "label");
+ label2.setAttribute("value", "aLabel2");
+ label2.setAttribute("flex", "1");
+ label2.setAttribute("crop", "end");
+ cell2.appendChild(label2);
+ item.appendChild(cell2);
+
+ var before = document.getElementById("inx");
+ if (!before)
+ r.appendChild(item);
+ else
+ r.insertBefore(item, before);
+ }
+ </script>
+
+ <gridlikebox flex="1" id="rbox">
+ <gridlikecols>
+ <gridlikecol flex="1"/>
+ <gridlikecol flex="1"/>
+ </gridlikecols>
+
+ <gridlikehead>
+ <gridlikeheader label="Col1"/>
+ <gridlikeheader label="Col2"/>
+ </gridlikehead>
+
+ <gridlikeitem value="hello1">
+ <gridlikecell><label value="Hello"/></gridlikecell>
+ <gridlikecell><label value="Hello"/></gridlikecell>
+ </gridlikeitem>
+ <gridlikeitem value="hello2" id="inx">
+ <gridlikecell><label value="Hello2"/></gridlikecell>
+ <gridlikecell><label value="Hello2.1"/></gridlikecell>
+ </gridlikeitem>
+ <gridlikeitem value="hello3">
+ <gridlikecell><label value="Hello592"/></gridlikecell>
+ <gridlikecell><label value="Hello592.1"/></gridlikecell>
+ </gridlikeitem>
+ <gridlikeitem value="hello4">
+ <gridlikecell><label value="Hello4"/></gridlikecell>
+ <gridlikecell><label value="Hello4--"/></gridlikecell>
+ </gridlikeitem>
+ </gridlikebox>
+</window>