diff options
Diffstat (limited to 'layout/reftests/box-ordinal')
8 files changed, 115 insertions, 0 deletions
diff --git a/layout/reftests/box-ordinal/dynamic-1-add-to-one-grouped.xhtml b/layout/reftests/box-ordinal/dynamic-1-add-to-one-grouped.xhtml new file mode 100644 index 0000000000..a7f0408f37 --- /dev/null +++ b/layout/reftests/box-ordinal/dynamic-1-add-to-one-grouped.xhtml @@ -0,0 +1,17 @@ +<?xml version="1.0"?> +<!DOCTYPE window> +<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" class="reftest-wait" onload="run()"> + <script type="application/javascript"><![CDATA[ + + function run() { + var c = document.getElementById("C"); + getComputedStyle(c, "").width; // flush + c.style.MozBoxOrdinalGroup = "2"; + document.documentElement.removeAttribute("class"); + } + + ]]></script> + <label id="A" value="A" /> + <label id="C" value="C" /> + <label id="B" value="B" /> +</window> diff --git a/layout/reftests/box-ordinal/dynamic-1-add-to-two-grouped-1.xhtml b/layout/reftests/box-ordinal/dynamic-1-add-to-two-grouped-1.xhtml new file mode 100644 index 0000000000..6ef73bc272 --- /dev/null +++ b/layout/reftests/box-ordinal/dynamic-1-add-to-two-grouped-1.xhtml @@ -0,0 +1,17 @@ +<?xml version="1.0"?> +<!DOCTYPE window> +<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" class="reftest-wait" onload="run()"> + <script type="application/javascript"><![CDATA[ + + function run() { + var c = document.getElementById("C"); + getComputedStyle(c, "").width; // flush + c.style.MozBoxOrdinalGroup = "2"; + document.documentElement.removeAttribute("class"); + } + + ]]></script> + <label id="B" value="B" style="-moz-box-ordinal-group: 2" /> + <label id="C" value="C" /> + <label id="A" value="A" /> +</window> diff --git a/layout/reftests/box-ordinal/dynamic-1-add-to-two-grouped-2.xhtml b/layout/reftests/box-ordinal/dynamic-1-add-to-two-grouped-2.xhtml new file mode 100644 index 0000000000..3c04293df8 --- /dev/null +++ b/layout/reftests/box-ordinal/dynamic-1-add-to-two-grouped-2.xhtml @@ -0,0 +1,17 @@ +<?xml version="1.0"?> +<!DOCTYPE window> +<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" class="reftest-wait" onload="run()"> + <script type="application/javascript"><![CDATA[ + + function run() { + var b = document.getElementById("B"); + getComputedStyle(b, "").width; // flush + b.style.MozBoxOrdinalGroup = "2"; + document.documentElement.removeAttribute("class"); + } + + ]]></script> + <label id="B" value="B" /> + <label id="C" value="C" style="-moz-box-ordinal-group: 2" /> + <label id="A" value="A" /> +</window> diff --git a/layout/reftests/box-ordinal/dynamic-1-ref.xhtml b/layout/reftests/box-ordinal/dynamic-1-ref.xhtml new file mode 100644 index 0000000000..66052d38dd --- /dev/null +++ b/layout/reftests/box-ordinal/dynamic-1-ref.xhtml @@ -0,0 +1,7 @@ +<?xml version="1.0"?> +<!DOCTYPE window> +<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> + <label id="A" value="A" /> + <label id="B" value="B" /> + <label id="C" value="C" /> +</window> diff --git a/layout/reftests/box-ordinal/dynamic-1-remove-to-none-grouped.xhtml b/layout/reftests/box-ordinal/dynamic-1-remove-to-none-grouped.xhtml new file mode 100644 index 0000000000..d3c444291d --- /dev/null +++ b/layout/reftests/box-ordinal/dynamic-1-remove-to-none-grouped.xhtml @@ -0,0 +1,17 @@ +<?xml version="1.0"?> +<!DOCTYPE window> +<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" class="reftest-wait" onload="run()"> + <script type="application/javascript"><![CDATA[ + + function run() { + var b = document.getElementById("B"); + getComputedStyle(b, "").width; // flush + b.style.MozBoxOrdinalGroup = ""; + document.documentElement.removeAttribute("class"); + } + + ]]></script> + <label id="A" value="A" /> + <label id="B" value="B" style="-moz-box-ordinal-group: 2" /> + <label id="C" value="C" /> +</window> diff --git a/layout/reftests/box-ordinal/dynamic-1-remove-to-one-grouped-1.xhtml b/layout/reftests/box-ordinal/dynamic-1-remove-to-one-grouped-1.xhtml new file mode 100644 index 0000000000..f2f2857342 --- /dev/null +++ b/layout/reftests/box-ordinal/dynamic-1-remove-to-one-grouped-1.xhtml @@ -0,0 +1,17 @@ +<?xml version="1.0"?> +<!DOCTYPE window> +<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" class="reftest-wait" onload="run()"> + <script type="application/javascript"><![CDATA[ + + function run() { + var b = document.getElementById("B"); + getComputedStyle(b, "").width; // flush + b.style.MozBoxOrdinalGroup = ""; + document.documentElement.removeAttribute("class"); + } + + ]]></script> + <label id="C" value="C" style="-moz-box-ordinal-group: 2" /> + <label id="A" value="A" /> + <label id="B" value="B" style="-moz-box-ordinal-group: 2" /> +</window> diff --git a/layout/reftests/box-ordinal/dynamic-1-remove-to-one-grouped-2.xhtml b/layout/reftests/box-ordinal/dynamic-1-remove-to-one-grouped-2.xhtml new file mode 100644 index 0000000000..1fb09c05be --- /dev/null +++ b/layout/reftests/box-ordinal/dynamic-1-remove-to-one-grouped-2.xhtml @@ -0,0 +1,17 @@ +<?xml version="1.0"?> +<!DOCTYPE window> +<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" class="reftest-wait" onload="run()"> + <script type="application/javascript"><![CDATA[ + + function run() { + var a = document.getElementById("A"); + getComputedStyle(a, "").width; // flush + a.style.MozBoxOrdinalGroup = ""; + document.documentElement.removeAttribute("class"); + } + + ]]></script> + <label id="C" value="C" style="-moz-box-ordinal-group: 2" /> + <label id="A" value="A" style="-moz-box-ordinal-group: 2" /> + <label id="B" value="B" /> +</window> diff --git a/layout/reftests/box-ordinal/reftest.list b/layout/reftests/box-ordinal/reftest.list new file mode 100644 index 0000000000..70f675571f --- /dev/null +++ b/layout/reftests/box-ordinal/reftest.list @@ -0,0 +1,6 @@ +== chrome://reftest/content/box-ordinal/dynamic-1-remove-to-none-grouped.xhtml chrome://reftest/content/box-ordinal/dynamic-1-ref.xhtml +== chrome://reftest/content/box-ordinal/dynamic-1-add-to-one-grouped.xhtml chrome://reftest/content/box-ordinal/dynamic-1-ref.xhtml +== chrome://reftest/content/box-ordinal/dynamic-1-remove-to-one-grouped-1.xhtml chrome://reftest/content/box-ordinal/dynamic-1-ref.xhtml +== chrome://reftest/content/box-ordinal/dynamic-1-remove-to-one-grouped-2.xhtml chrome://reftest/content/box-ordinal/dynamic-1-ref.xhtml +== chrome://reftest/content/box-ordinal/dynamic-1-add-to-two-grouped-1.xhtml chrome://reftest/content/box-ordinal/dynamic-1-ref.xhtml +== chrome://reftest/content/box-ordinal/dynamic-1-add-to-two-grouped-2.xhtml chrome://reftest/content/box-ordinal/dynamic-1-ref.xhtml |