From 89263f03b422c87c5e2842707a38658253022d5a Mon Sep 17 00:00:00 2001 From: wpt-sync Date: Tue, 5 Dec 2017 19:47:10 +0000 Subject: [PATCH 01/10] Fix race in wpt /wasm/wasm_local_iframe_test.html () bugzilla-url: https://bugzilla-dev.allizom.org/show_bug.cgi?id=Bug 1383683 gecko-commit: e219b2b152d795da623814d7aeae3a89b1d2726e gecko-integration-branch: central gecko-reviewers: bz --- wasm/wasm_local_iframe_test.html | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/wasm/wasm_local_iframe_test.html b/wasm/wasm_local_iframe_test.html index 9ccebdc75394a1..0f4fbd0c7191ec 100644 --- a/wasm/wasm_local_iframe_test.html +++ b/wasm/wasm_local_iframe_test.html @@ -2,16 +2,18 @@ - + From f8f63e252b375635e242bc4a2ccba9dd387424ee Mon Sep 17 00:00:00 2001 From: wpt-sync Date: Tue, 5 Dec 2017 20:11:25 +0000 Subject: [PATCH 02/10] part 1 - Add internal overflow-clip-box-block/-inline properties and make overflow-clip-box a shorthand. bugzilla-url: https://bugzilla-dev.allizom.org/show_bug.cgi?id=Bug 1422839 gecko-commit: cf93ccd03ca7d452aa1e1e9bff575f0992df7874 gecko-integration-branch: autoland gecko-reviewers: dholbert --- .../animation-model/animation-types/property-list.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/web-animations/animation-model/animation-types/property-list.js b/web-animations/animation-model/animation-types/property-list.js index 46829c31495400..32bf63d3a82175 100644 --- a/web-animations/animation-model/animation-types/property-list.js +++ b/web-animations/animation-model/animation-types/property-list.js @@ -1054,12 +1054,6 @@ const gCSSProperties = { types: [ ] }, - 'overflow-clip-box': { - // https://developer.mozilla.org/en/docs/Web/CSS/overflow-clip-box - types: [ - { type: 'discrete', options: [ [ 'padding-box', 'content-box' ] ] } - ] - }, 'overflow-wrap': { // https://drafts.csswg.org/css-text-3/#propdef-overflow-wrap types: [ From 79e857b55d76794edde1ff15420c2fcf9cff3725 Mon Sep 17 00:00:00 2001 From: wpt-sync Date: Thu, 7 Dec 2017 16:24:20 +0000 Subject: [PATCH 03/10] P5 Fix race in about-blank-replacement.https.html popup test case. bugzilla-url: https://bugzilla-dev.allizom.org/show_bug.cgi?id=Bug 1423412 gecko-commit: 7750a46652fa83acc6b8cd3e3bee8f428d24bfd5 gecko-integration-branch: central gecko-reviewers: baku --- .../resources/about-blank-replacement-popup-frame.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/service-workers/service-worker/resources/about-blank-replacement-popup-frame.py b/service-workers/service-worker/resources/about-blank-replacement-popup-frame.py index be5294539833c7..f0b8cd578e3e05 100644 --- a/service-workers/service-worker/resources/about-blank-replacement-popup-frame.py +++ b/service-workers/service-worker/resources/about-blank-replacement-popup-frame.py @@ -12,12 +12,15 @@ def main(request, response): ") + session.url = inline("" % server_config["domains"][""]) result = session.transport.send("GET", "session/%s/cookie" % session.session_id) assert result.status == 200 assert "value" in result.body From a59f44649f1beef175896409cb657e5a88f26961 Mon Sep 17 00:00:00 2001 From: wpt-sync Date: Thu, 7 Dec 2017 18:20:21 +0000 Subject: [PATCH 06/10] Move element retrieval WPT tests to single directory. bugzilla-url: https://bugzilla-dev.allizom.org/show_bug.cgi?id=Bug 1421675 gecko-commit: 4bdcd7f6e1978b4769629208fb479d93a859018a gecko-integration-branch: central gecko-reviewers: maja_zf --- webdriver/tests/{retrieval => element_retrieval}/__init__.py | 0 webdriver/tests/{retrieval => element_retrieval}/find_element.py | 0 .../{retrieval => element_retrieval}/find_element_from_element.py | 0 .../find_element_from_elements.py | 0 webdriver/tests/{retrieval => element_retrieval}/find_elements.py | 0 5 files changed, 0 insertions(+), 0 deletions(-) rename webdriver/tests/{retrieval => element_retrieval}/__init__.py (100%) rename webdriver/tests/{retrieval => element_retrieval}/find_element.py (100%) rename webdriver/tests/{retrieval => element_retrieval}/find_element_from_element.py (100%) rename webdriver/tests/{retrieval => element_retrieval}/find_element_from_elements.py (100%) rename webdriver/tests/{retrieval => element_retrieval}/find_elements.py (100%) diff --git a/webdriver/tests/retrieval/__init__.py b/webdriver/tests/element_retrieval/__init__.py similarity index 100% rename from webdriver/tests/retrieval/__init__.py rename to webdriver/tests/element_retrieval/__init__.py diff --git a/webdriver/tests/retrieval/find_element.py b/webdriver/tests/element_retrieval/find_element.py similarity index 100% rename from webdriver/tests/retrieval/find_element.py rename to webdriver/tests/element_retrieval/find_element.py diff --git a/webdriver/tests/retrieval/find_element_from_element.py b/webdriver/tests/element_retrieval/find_element_from_element.py similarity index 100% rename from webdriver/tests/retrieval/find_element_from_element.py rename to webdriver/tests/element_retrieval/find_element_from_element.py diff --git a/webdriver/tests/retrieval/find_element_from_elements.py b/webdriver/tests/element_retrieval/find_element_from_elements.py similarity index 100% rename from webdriver/tests/retrieval/find_element_from_elements.py rename to webdriver/tests/element_retrieval/find_element_from_elements.py diff --git a/webdriver/tests/retrieval/find_elements.py b/webdriver/tests/element_retrieval/find_elements.py similarity index 100% rename from webdriver/tests/retrieval/find_elements.py rename to webdriver/tests/element_retrieval/find_elements.py From 8ba9bef8ef6ebedca600042557c3edebd4230045 Mon Sep 17 00:00:00 2001 From: wpt-sync Date: Thu, 7 Dec 2017 18:17:44 +0000 Subject: [PATCH 07/10] Fix test failures. bugzilla-url: https://bugzilla-dev.allizom.org/show_bug.cgi?id=Bug 1037335 gecko-commit: 7678ac4b15adf33769ce558814fe44f84447ebe6 gecko-integration-branch: central gecko-reviewers: ckerschb --- content-security-policy/securitypolicyviolation/idl.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/content-security-policy/securitypolicyviolation/idl.html b/content-security-policy/securitypolicyviolation/idl.html index 17f492e7344de6..a4f9e68f8314db 100644 --- a/content-security-policy/securitypolicyviolation/idl.html +++ b/content-security-policy/securitypolicyviolation/idl.html @@ -21,6 +21,9 @@ long lineNumber; long columnNumber; }; + + interface Event { + }; -
From 6be87daac58455f0e7ffe7f6c24459c9728668a6 Mon Sep 17 00:00:00 2001 From: wpt-sync Date: Thu, 7 Dec 2017 18:21:09 +0000 Subject: [PATCH 09/10] Remove duplicated WebDriver WebIDL test. This test is duplicated in testing/web-platform/tests/webdriver/tests/interface.html. bugzilla-url: https://bugzilla-dev.allizom.org/show_bug.cgi?id=Bug 1421676 gecko-commit: ad8f6896b87dfabdbbf0d6db28bdfaaf16158f6a gecko-integration-branch: central gecko-reviewers: maja_zf --- webdriver/interface/interface.html | 40 ------------------------------ 1 file changed, 40 deletions(-) delete mode 100644 webdriver/interface/interface.html diff --git a/webdriver/interface/interface.html b/webdriver/interface/interface.html deleted file mode 100644 index f3c149b1cee06b..00000000000000 --- a/webdriver/interface/interface.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - From 33b0c7d55ec3b96dc7f22885be3debf64ac07818 Mon Sep 17 00:00:00 2001 From: moz-wptsync-bot Date: Thu, 11 Jan 2018 12:16:37 +0000 Subject: [PATCH 10/10] css-ui] Skip anonymous boxes (rather than all pseudos) when looking for the 'overflow' style frame. bugzilla-url: https://bugzilla-dev.allizom.org/show_bug.cgi?id=1343980 gecko-commit: 58f33e7fefba4442855c2176eeb727e2928da576 gecko-integration-branch: central gecko-reviewers: bz --- css/css-ui/text-overflow-024-ref.html | 26 +++++++++++++++++++++ css/css-ui/text-overflow-024.html | 31 +++++++++++++++++++++++++ css/css-ui/text-overflow-025-ref.html | 24 +++++++++++++++++++ css/css-ui/text-overflow-025.html | 33 +++++++++++++++++++++++++++ 4 files changed, 114 insertions(+) create mode 100644 css/css-ui/text-overflow-024-ref.html create mode 100644 css/css-ui/text-overflow-024.html create mode 100644 css/css-ui/text-overflow-025-ref.html create mode 100644 css/css-ui/text-overflow-025.html diff --git a/css/css-ui/text-overflow-024-ref.html b/css/css-ui/text-overflow-024-ref.html new file mode 100644 index 00000000000000..2e9b8301f4697f --- /dev/null +++ b/css/css-ui/text-overflow-024-ref.html @@ -0,0 +1,26 @@ + + + + + Reference: text-overflow on tr::before with overflow:hidden + + + +PASS if there is an ellipsis at the end of the text below. + + +
Some long text here that overflows and whatnot.
+ + + diff --git a/css/css-ui/text-overflow-024.html b/css/css-ui/text-overflow-024.html new file mode 100644 index 00000000000000..0ca5b428cb4d49 --- /dev/null +++ b/css/css-ui/text-overflow-024.html @@ -0,0 +1,31 @@ + + + + + Test: text-overflow on tr::before with overflow:hidden + + + + + + +PASS if there is an ellipsis at the end of the text below. + + +
+ + + diff --git a/css/css-ui/text-overflow-025-ref.html b/css/css-ui/text-overflow-025-ref.html new file mode 100644 index 00000000000000..c8acd479603a4c --- /dev/null +++ b/css/css-ui/text-overflow-025-ref.html @@ -0,0 +1,24 @@ + + + + + Reference: text-overflow on tr::before without overflow:hidden + + + +PASS if there is no ellipsis below. + + +
Some long text here that overflows and whatnot.
+ + + diff --git a/css/css-ui/text-overflow-025.html b/css/css-ui/text-overflow-025.html new file mode 100644 index 00000000000000..3e0fce0afb0eb7 --- /dev/null +++ b/css/css-ui/text-overflow-025.html @@ -0,0 +1,33 @@ + + + + + Test: text-overflow on tr::before without overflow:hidden + + + + + + +PASS if there is no ellipsis below. + + +
+ + +