From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- .../mochitest/dom-level0/child_ip_address.html | 39 ++++ .../dom-level0/file_crossdomainprops_inner.html | 11 ++ dom/tests/mochitest/dom-level0/file_location.html | 10 + .../mochitest/dom-level0/framed_location.html | 11 ++ dom/tests/mochitest/dom-level0/idn_child.html | 101 ++++++++++ .../dom-level0/innerWidthHeight_script.html | 30 +++ dom/tests/mochitest/dom-level0/mochitest.ini | 19 ++ .../dom-level0/test_crossdomainprops.html | 36 ++++ .../dom-level0/test_innerWidthHeight_script.html | 31 +++ dom/tests/mochitest/dom-level0/test_location.html | 73 +++++++ .../mochitest/dom-level0/test_location_framed.html | 31 +++ .../dom-level0/test_location_getters.html | 29 +++ .../dom-level0/test_location_sandboxed.html | 33 ++++ .../dom-level0/test_location_setters.html | 78 ++++++++ .../test_setting_document.domain_idn.html | 211 +++++++++++++++++++++ ...etting_document.domain_to_shortened_ipaddr.html | 35 ++++ 16 files changed, 778 insertions(+) create mode 100644 dom/tests/mochitest/dom-level0/child_ip_address.html create mode 100644 dom/tests/mochitest/dom-level0/file_crossdomainprops_inner.html create mode 100644 dom/tests/mochitest/dom-level0/file_location.html create mode 100644 dom/tests/mochitest/dom-level0/framed_location.html create mode 100644 dom/tests/mochitest/dom-level0/idn_child.html create mode 100644 dom/tests/mochitest/dom-level0/innerWidthHeight_script.html create mode 100644 dom/tests/mochitest/dom-level0/mochitest.ini create mode 100644 dom/tests/mochitest/dom-level0/test_crossdomainprops.html create mode 100644 dom/tests/mochitest/dom-level0/test_innerWidthHeight_script.html create mode 100644 dom/tests/mochitest/dom-level0/test_location.html create mode 100644 dom/tests/mochitest/dom-level0/test_location_framed.html create mode 100644 dom/tests/mochitest/dom-level0/test_location_getters.html create mode 100644 dom/tests/mochitest/dom-level0/test_location_sandboxed.html create mode 100644 dom/tests/mochitest/dom-level0/test_location_setters.html create mode 100644 dom/tests/mochitest/dom-level0/test_setting_document.domain_idn.html create mode 100644 dom/tests/mochitest/dom-level0/test_setting_document.domain_to_shortened_ipaddr.html (limited to 'dom/tests/mochitest/dom-level0') diff --git a/dom/tests/mochitest/dom-level0/child_ip_address.html b/dom/tests/mochitest/dom-level0/child_ip_address.html new file mode 100644 index 000000000..fdca1c213 --- /dev/null +++ b/dom/tests/mochitest/dom-level0/child_ip_address.html @@ -0,0 +1,39 @@ + + + + Child window at 127.0.0.1 + + + +

Somewhere!

+ + diff --git a/dom/tests/mochitest/dom-level0/file_crossdomainprops_inner.html b/dom/tests/mochitest/dom-level0/file_crossdomainprops_inner.html new file mode 100644 index 000000000..8ffaa87a9 --- /dev/null +++ b/dom/tests/mochitest/dom-level0/file_crossdomainprops_inner.html @@ -0,0 +1,11 @@ + + + + + + +inner + + diff --git a/dom/tests/mochitest/dom-level0/file_location.html b/dom/tests/mochitest/dom-level0/file_location.html new file mode 100644 index 000000000..3a74b32d1 --- /dev/null +++ b/dom/tests/mochitest/dom-level0/file_location.html @@ -0,0 +1,10 @@ + + + diff --git a/dom/tests/mochitest/dom-level0/framed_location.html b/dom/tests/mochitest/dom-level0/framed_location.html new file mode 100644 index 000000000..a2b65906f --- /dev/null +++ b/dom/tests/mochitest/dom-level0/framed_location.html @@ -0,0 +1,11 @@ + diff --git a/dom/tests/mochitest/dom-level0/idn_child.html b/dom/tests/mochitest/dom-level0/idn_child.html new file mode 100644 index 000000000..61243b322 --- /dev/null +++ b/dom/tests/mochitest/dom-level0/idn_child.html @@ -0,0 +1,101 @@ + + + + + Child window on a site whose "base" domain contains IDN + + + +

Somewhere!

+ + diff --git a/dom/tests/mochitest/dom-level0/innerWidthHeight_script.html b/dom/tests/mochitest/dom-level0/innerWidthHeight_script.html new file mode 100644 index 000000000..7406086ad --- /dev/null +++ b/dom/tests/mochitest/dom-level0/innerWidthHeight_script.html @@ -0,0 +1,30 @@ + + + + + Bug 602580 - Test getting and setting innerWidth and Height after using setCSSViewport + + + + + diff --git a/dom/tests/mochitest/dom-level0/mochitest.ini b/dom/tests/mochitest/dom-level0/mochitest.ini new file mode 100644 index 000000000..595fcd281 --- /dev/null +++ b/dom/tests/mochitest/dom-level0/mochitest.ini @@ -0,0 +1,19 @@ +[DEFAULT] +support-files = + child_ip_address.html + file_crossdomainprops_inner.html + file_location.html + framed_location.html + idn_child.html + innerWidthHeight_script.html + +[test_crossdomainprops.html] +[test_innerWidthHeight_script.html] +skip-if = toolkit == 'android' # Bug 1075071 - Permafail on Android +[test_location.html] +[test_location_framed.html] +[test_location_getters.html] +[test_location_sandboxed.html] +[test_location_setters.html] +[test_setting_document.domain_idn.html] +[test_setting_document.domain_to_shortened_ipaddr.html] diff --git a/dom/tests/mochitest/dom-level0/test_crossdomainprops.html b/dom/tests/mochitest/dom-level0/test_crossdomainprops.html new file mode 100644 index 000000000..b18bb07d9 --- /dev/null +++ b/dom/tests/mochitest/dom-level0/test_crossdomainprops.html @@ -0,0 +1,36 @@ + + + + Test for Cross domain access to properties + + + + +

+ + + +
+
+
+ + diff --git a/dom/tests/mochitest/dom-level0/test_innerWidthHeight_script.html b/dom/tests/mochitest/dom-level0/test_innerWidthHeight_script.html new file mode 100644 index 000000000..55b38b527 --- /dev/null +++ b/dom/tests/mochitest/dom-level0/test_innerWidthHeight_script.html @@ -0,0 +1,31 @@ + + + + Bug 602580 - Test getting and setting innerWidth and Height after using setCSSViewport + + + + + + + + diff --git a/dom/tests/mochitest/dom-level0/test_location.html b/dom/tests/mochitest/dom-level0/test_location.html new file mode 100644 index 000000000..49bbb0491 --- /dev/null +++ b/dom/tests/mochitest/dom-level0/test_location.html @@ -0,0 +1,73 @@ + + + + Test for location object behaviors + + + + +

+ +
+
+
+ + + diff --git a/dom/tests/mochitest/dom-level0/test_location_framed.html b/dom/tests/mochitest/dom-level0/test_location_framed.html new file mode 100644 index 000000000..9d57ec943 --- /dev/null +++ b/dom/tests/mochitest/dom-level0/test_location_framed.html @@ -0,0 +1,31 @@ + + + + MessageEvent tests + + + + +

+
+  
+  
+  
+ + diff --git a/dom/tests/mochitest/dom-level0/test_location_getters.html b/dom/tests/mochitest/dom-level0/test_location_getters.html new file mode 100644 index 000000000..f5f44835d --- /dev/null +++ b/dom/tests/mochitest/dom-level0/test_location_getters.html @@ -0,0 +1,29 @@ + + + + MessageEvent tests + + + + +

+
+  
+  
+ + diff --git a/dom/tests/mochitest/dom-level0/test_location_sandboxed.html b/dom/tests/mochitest/dom-level0/test_location_sandboxed.html new file mode 100644 index 000000000..d22e2dd33 --- /dev/null +++ b/dom/tests/mochitest/dom-level0/test_location_sandboxed.html @@ -0,0 +1,33 @@ + + + + MessageEvent tests + + + + +

+
+  
+  
+  
+ + diff --git a/dom/tests/mochitest/dom-level0/test_location_setters.html b/dom/tests/mochitest/dom-level0/test_location_setters.html new file mode 100644 index 000000000..eb159c7ff --- /dev/null +++ b/dom/tests/mochitest/dom-level0/test_location_setters.html @@ -0,0 +1,78 @@ + + + + + Test for Bug 639720 + + + + +Mozilla Bug 639720 +

+ +

+ +
+
+
+ + diff --git a/dom/tests/mochitest/dom-level0/test_setting_document.domain_idn.html b/dom/tests/mochitest/dom-level0/test_setting_document.domain_idn.html new file mode 100644 index 000000000..b2e36dbbf --- /dev/null +++ b/dom/tests/mochitest/dom-level0/test_setting_document.domain_idn.html @@ -0,0 +1,211 @@ + + + + + Setting document.domain and IDN + + + + +

+ + + + +
+

Whitelisted

+ + +
+ +
+

Not whitelisted

+ + +
+ +
+
+
+ + diff --git a/dom/tests/mochitest/dom-level0/test_setting_document.domain_to_shortened_ipaddr.html b/dom/tests/mochitest/dom-level0/test_setting_document.domain_to_shortened_ipaddr.html new file mode 100644 index 000000000..5af14b8cf --- /dev/null +++ b/dom/tests/mochitest/dom-level0/test_setting_document.domain_to_shortened_ipaddr.html @@ -0,0 +1,35 @@ + + + + document.domain can't be meaningfully set on pages at IP address hosts + + + + +

+ + + + +
+
+
+ + -- cgit v1.2.3