Skip to content

Commit 614ba95

Browse files
vmpstrmoz-wptsync-bot
authored andcommitted
Bug 1845602 [wpt PR 41193] - VT: Copy text-orientation to the pseudo elements, a=testonly
Automatic update from web-platform-tests VT: Copy text-orientation to the pseudo elements This is a resolution on w3c/csswg-drafts#8230 (comment) [email protected], [email protected] Bug: 1465875 Change-Id: I765e96b6c0ec4e150a4fb4dfcfb7bd1e5d7faa3f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4721771 Commit-Queue: Vladimir Levin <[email protected]> Reviewed-by: David Bokan <[email protected]> Reviewed-by: Dave Tapuska <[email protected]> Reviewed-by: Ken Buchanan <[email protected]> Cr-Commit-Position: refs/heads/main@{#1176903} -- wpt-commits: dcf353e2846063d4b9e62ec75545d0ea857ef765 wpt-pr: 41193
1 parent 4e3e302 commit 614ba95

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

testing/web-platform/tests/css/css-view-transitions/pseudo-get-computed-style.html

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
contain: paint;
1616
view-transition-name: target;
1717
mix-blend-mode: multiply;
18+
text-orientation: upright;
1819
}
1920
::view-transition-image-pair(target) {
2021
position: fixed;
@@ -31,6 +32,7 @@
3132
assert_equals(getComputedStyle(document.documentElement, ":view-transition").position, "fixed", ":view-transition");
3233
assert_equals(getComputedStyle(document.documentElement, ":view-transition-group(target)").position, "absolute", "container(target)");
3334
assert_equals(getComputedStyle(document.documentElement, ":view-transition-group(target)").mixBlendMode, "multiply", "container(target)");
35+
assert_equals(getComputedStyle(document.documentElement, ":view-transition-group(target)").textOrientation, "upright", "container(target)");
3436
assert_equals(getComputedStyle(document.documentElement, ":view-transition-image-pair(target)").position, "absolute", "wrapper(target)");
3537

3638
assert_equals(getComputedStyle(document.documentElement, ":view-transition-old(target)").position, "absolute", "outgoing(target)");
@@ -44,6 +46,7 @@
4446
assert_equals(getComputedStyle(document.documentElement, ":view-transition").position, "fixed", "raf :view-transition");
4547
assert_equals(getComputedStyle(document.documentElement, ":view-transition-group(target)").position, "absolute", "raf container(target)");
4648
assert_equals(getComputedStyle(document.documentElement, ":view-transition-group(target)").mixBlendMode, "multiply", "raf container(target)");
49+
assert_equals(getComputedStyle(document.documentElement, ":view-transition-group(target)").textOrientation, "upright", "raf container(target)");
4750
assert_equals(getComputedStyle(document.documentElement, ":view-transition-image-pair(target)").position, "fixed", "raf wrapper(target)");
4851

4952
assert_equals(getComputedStyle(document.documentElement, ":view-transition-old(target)").position, "absolute", "raf outgoing(target)");
@@ -81,6 +84,7 @@
8184
assert_equals(getComputedStyle(document.documentElement, ":view-transition").position, "fixed");
8285
assert_equals(getComputedStyle(document.documentElement, ":view-transition-group(target)").position, "absolute");
8386
assert_equals(getComputedStyle(document.documentElement, ":view-transition-group(target)").mixBlendMode, "multiply");
87+
assert_equals(getComputedStyle(document.documentElement, ":view-transition-group(target)").textOrientation, "upright");
8488
assert_equals(getComputedStyle(document.documentElement, ":view-transition-image-pair(target)").position, "fixed");
8589

8690
assert_equals(getComputedStyle(document.documentElement, ":view-transition-old(target)").position, "absolute");

0 commit comments

Comments
 (0)