Skip to content

Commit

Permalink
Import wpt@fb6ff25db14be2a7d87276c14f523a7f4bb76450
Browse files Browse the repository at this point in the history
Using wpt-import in Chromium e33c8da.

Note to sheriffs: This CL imports external tests and adds
expectations for those tests; if this CL is large and causes
a few new failures, please fix the failures by adding new
lines to TestExpectations rather than reverting. See:
https://chromium.googlesource.com/chromium/src/+/main/docs/testing/web_platform_tests.md

Directory owners for changes in this CL:
rego@igalia.com:
  external/wpt/css/css-contain

NOAUTOREVERT=true
R=rubber-stamper@appspot.gserviceaccount.com

No-Export: true
Cq-Include-Trybots: luci.chromium.try:linux-wpt-identity-fyi-rel,linux-wpt-input-fyi-rel,linux-blink-rel
Change-Id: Iba4c1d60b6aa7f56ace95c7b52a23ed520198f67
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3577253
Auto-Submit: WPT Autoroller <wpt-autoroller@chops-service-accounts.iam.gserviceaccount.com>
Commit-Queue: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com>
Bot-Commit: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com>
Cr-Commit-Position: refs/heads/main@{#990286}
  • Loading branch information
Chromium WPT Sync authored and Chromium LUCI CQ committed Apr 8, 2022
1 parent 5ebedd8 commit a01c0c7
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 2 deletions.
6 changes: 6 additions & 0 deletions third_party/blink/web_tests/TestExpectations
Expand Up @@ -3329,6 +3329,12 @@ crbug.com/626703 [ Win ] virtual/prerender/external/wpt/speculation-rules/preren
crbug.com/626703 [ Win ] virtual/partitioned-cookies/http/tests/inspector-protocol/network/disabled-cache-navigation.js [ Failure ]

# ====== New tests from wpt-importer added here ======
crbug.com/626703 [ Linux ] virtual/document-transition/wpt_internal/document-transition/content-with-transform-old-image.html [ Failure ]
crbug.com/626703 [ Mac10.12 ] virtual/document-transition/wpt_internal/document-transition/content-with-transform-old-image.html [ Failure ]
crbug.com/626703 [ Mac10.14 ] virtual/document-transition/wpt_internal/document-transition/content-with-transform-old-image.html [ Failure ]
crbug.com/626703 [ Mac11 ] virtual/document-transition/wpt_internal/document-transition/content-with-transform-old-image.html [ Failure ]
crbug.com/626703 [ Mac11-arm64 ] virtual/document-transition/wpt_internal/document-transition/content-with-transform-old-image.html [ Failure ]
crbug.com/626703 [ Win7 ] virtual/document-transition/wpt_internal/document-transition/content-with-transform-old-image.html [ Failure ]
crbug.com/626703 external/wpt/css/css-grid/subgrid/independent-formatting-context.html [ Failure ]
crbug.com/626703 external/wpt/html/rendering/non-replaced-elements/phrasing-content-0/br-wbr-content/content-property.tentative.html [ Failure ]
crbug.com/626703 [ Mac10.12 ] external/wpt/content-security-policy/inheritance/history-iframe.sub.html [ Timeout ]
Expand Down
2 changes: 1 addition & 1 deletion third_party/blink/web_tests/external/Version
@@ -1 +1 @@
Version: 3518e60485b37ada91e3ab08daaa0591c4d16c4f
Version: fb6ff25db14be2a7d87276c14f523a7f4bb76450
23 changes: 22 additions & 1 deletion third_party/blink/web_tests/external/WPT_BASE_MANIFEST_8.json
Expand Up @@ -230194,6 +230194,19 @@
]
},
"the-frameset-and-frame-elements": {
"frameset-visibility-hidden.html": [
"b6c454b03fd78f22812c8eea91825c23fb289d6c",
[
null,
[
[
"/html/rendering/non-replaced-elements/the-frameset-and-frame-elements/reference/empty-ref.html",
"=="
]
],
{}
]
],
"large-cols-abssize.html": [
"ba55da868651d06bd48e8ab151584316defbaad6",
[
Expand Down Expand Up @@ -260419,6 +260432,10 @@
"bbe86ab75b72693cf96df110ca8d00c774656d6d",
[]
],
"container-for-shadow-dom-expected.txt": [
"126cd057fafc28394287282c35b305cd668d8b61",
[]
],
"container-parsing-expected.txt": [
"892c07ec079a25b7c3b2fd2fd6b15515e02839c8",
[]
Expand Down Expand Up @@ -311423,6 +311440,10 @@
[]
],
"reference": {
"empty-ref.html": [
"0e76edd65b7baf5316fc9d0c4da59a3502e4c27a",
[]
],
"green-ref.html": [
"62208d72c917f09413ffdf6377ac32afe6468a6e",
[]
Expand Down Expand Up @@ -376907,7 +376928,7 @@
]
],
"container-for-shadow-dom.html": [
"1ac4243bc41819a7ede64fefef6966644ac0c878",
"33a2ce23e0d5a7f93cf98a9a00b191a500044adf",
[
null,
{}
Expand Down
@@ -0,0 +1,4 @@
This is a testharness.js-based test.
Harness Error. harness_status.status = 1 , harness_status.message = Uncaught TypeError: Cannot read properties of null (reading 'parentNode')
Harness: the test ran to completion.

Expand Up @@ -231,6 +231,18 @@
<script>
setup(() => assert_implements_container_queries());

function attachShadowRoots(root) {
root.querySelectorAll("template[shadowroot]").forEach(template => {
const mode = template.getAttribute("shadowroot");
const shadowRoot = template.parentNode.attachShadow({ mode });
shadowRoot.appendChild(template.content);
template.remove();
attachShadowRoots(shadowRoot);
});
}
if (!document.querySelector("template[shadowroot]").parentNode.shadowRoot)
attachShadowRoots(document);

const green = "rgb(0, 128, 0)";

test(() => {
Expand Down

0 comments on commit a01c0c7

Please sign in to comment.