Skip to content

Commit

Permalink
Import wpt@49819d78d44b87d5ebb076c5b005dcbfc630c24f
Browse files Browse the repository at this point in the history
Using wpt-import in Chromium 228354d.

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

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: I3fd8fa4776b828b097ee2c0f70a710233016cdb2
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4269431
Commit-Queue: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com>
Bot-Commit: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com>
Auto-Submit: WPT Autoroller <wpt-autoroller@chops-service-accounts.iam.gserviceaccount.com>
Cr-Commit-Position: refs/heads/main@{#1107282}
  • Loading branch information
Chromium WPT Sync authored and Chromium LUCI CQ committed Feb 19, 2023
1 parent f501695 commit 0820325
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 10 deletions.
27 changes: 17 additions & 10 deletions third_party/blink/web_tests/external/WPT_BASE_MANIFEST_8.json
Original file line number Diff line number Diff line change
Expand Up @@ -197458,6 +197458,19 @@
{}
]
],
"preserve3d-pseudo-element.html": [
"f3a4441e991ad57fb1459c1ebb0a9b3a810620a1",
[
null,
[
[
"/css/css-transforms/preserve3d-pseudo-element-ref.html",
"=="
]
],
{}
]
],
"rotate": {
"svg-rotate-3args-002.html": [
"5906a2f4041319143b926f75af321b714f66d39b",
Expand Down Expand Up @@ -264619,16 +264632,6 @@
}
},
"support": {
".cache": {
"gitignore2.json": [
"1e2869ce4b97b1e5a0139fdf79e3c8150833d7e6",
[]
],
"mtime.json": [
"562cf180f36828e10467618c079de90c392ef9c6",
[]
]
},
".gitignore": [
"d93e645d547894b50149d3726de2654957b6e06f",
[]
Expand Down Expand Up @@ -317089,6 +317092,10 @@
"df0bfc417df08d4e23eaa0107f4ed298abd72f0f",
[]
],
"preserve3d-pseudo-element-ref.html": [
"8b3c3b08af40ee08869366e5465adafb45d98bcc",
[]
],
"reference": {
"backface-visibility-hidden-ref.html": [
"6a3e305e5c0c7fca6c8d53574b7a09eb21afb6cc",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!doctype html>
<title>CSS Test: preserve-3d on pseudo elements</title>
<link rel="author" title="Matt Woodrow" href="mailto:mattwoodrow@apple.com">
<style>
div {
width: 200px;
height: 200px;
background-color: green;
}
</style>
<div></div>
</div>
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!doctype html>
<title>CSS Test: preserve-3d on pseudo elements</title>
<link rel="author" title="Matt Woodrow" href="mailto:mattwoodrow@apple.com">
<link rel="help" href="https://drafts.csswg.org/css-transforms-2/">
<link rel="match" href="preserve3d-pseudo-element-ref.html">
<style>
div {
width: 200px;
height: 200px;
transform: rotateX(90deg);
transform-style: preserve-3d;
}

div::before {
display: inline-block;
width: 200px;
height: 200px;
transform: rotateX(90deg);
content: '';
background-color: green;
}
</style>
<div></div>
</div>

0 comments on commit 0820325

Please sign in to comment.