From 9d3a4eef6ba7fca4d519567a78e69f90affe2303 Mon Sep 17 00:00:00 2001 From: Di Zhang Date: Thu, 10 Nov 2022 16:03:06 +0000 Subject: [PATCH] Bug 1797426 [wpt PR 36659] - Allow Progress element to have writing mode vertical, a=testonly Automatic update from web-platform-tests Allow Progress element to have writing mode vertical This CL allow element to have writing-mode vertical for both the default native appearance and when appearance is set to none. We also add the feature flag FormControlsVerticalWritingModeSupport so all changes made for this bug can be turned on/off safely. Change-Id: I2e1d424d4337b42316e830cfbb16afb053699bc5 Bug: 681917 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3979781 Reviewed-by: Mason Freed Reviewed-by: Kent Tamura Reviewed-by: Evan Stade Commit-Queue: Di Zhang Cr-Commit-Position: refs/heads/main@{#1068912} -- wpt-commits: a8b1be96e9889525d7301a43c39652f12d58f49f wpt-pr: 36659 --- ...-appearance-native-computed-style.optional.html | 32 ++++++++++++++++++++++ ...ress-appearance-native-horizontal.optional.html | 12 ++++++++ ...ogress-appearance-native-vertical.optional.html | 12 ++++++++ ...ogress-appearance-none-horizontal.optional.html | 12 ++++++++ ...progress-appearance-none-vertical.optional.html | 12 ++++++++ 5 files changed, 80 insertions(+) create mode 100644 testing/web-platform/tests/css/css-writing-modes/progress-appearance-native-computed-style.optional.html create mode 100644 testing/web-platform/tests/css/css-writing-modes/progress-appearance-native-horizontal.optional.html create mode 100644 testing/web-platform/tests/css/css-writing-modes/progress-appearance-native-vertical.optional.html create mode 100644 testing/web-platform/tests/css/css-writing-modes/progress-appearance-none-horizontal.optional.html create mode 100644 testing/web-platform/tests/css/css-writing-modes/progress-appearance-none-vertical.optional.html diff --git a/testing/web-platform/tests/css/css-writing-modes/progress-appearance-native-computed-style.optional.html b/testing/web-platform/tests/css/css-writing-modes/progress-appearance-native-computed-style.optional.html new file mode 100644 index 000000000000..6bb48bf19845 --- /dev/null +++ b/testing/web-platform/tests/css/css-writing-modes/progress-appearance-native-computed-style.optional.html @@ -0,0 +1,32 @@ + + + +Progress appearance native writing mode computed style + + + + + + + + \ No newline at end of file diff --git a/testing/web-platform/tests/css/css-writing-modes/progress-appearance-native-horizontal.optional.html b/testing/web-platform/tests/css/css-writing-modes/progress-appearance-native-horizontal.optional.html new file mode 100644 index 000000000000..f3c00e78a471 --- /dev/null +++ b/testing/web-platform/tests/css/css-writing-modes/progress-appearance-native-horizontal.optional.html @@ -0,0 +1,12 @@ + + + + +Progress appearance native writing mode horizontal + + + + + +

The progress element below should match the correct writing mode.

+ \ No newline at end of file diff --git a/testing/web-platform/tests/css/css-writing-modes/progress-appearance-native-vertical.optional.html b/testing/web-platform/tests/css/css-writing-modes/progress-appearance-native-vertical.optional.html new file mode 100644 index 000000000000..62d9ff54ec3d --- /dev/null +++ b/testing/web-platform/tests/css/css-writing-modes/progress-appearance-native-vertical.optional.html @@ -0,0 +1,12 @@ + + + + +Progress appearance native writing mode vertical + + + + + +

The progress element below should match the correct writing mode.

+ \ No newline at end of file diff --git a/testing/web-platform/tests/css/css-writing-modes/progress-appearance-none-horizontal.optional.html b/testing/web-platform/tests/css/css-writing-modes/progress-appearance-none-horizontal.optional.html new file mode 100644 index 000000000000..22f720792ef0 --- /dev/null +++ b/testing/web-platform/tests/css/css-writing-modes/progress-appearance-none-horizontal.optional.html @@ -0,0 +1,12 @@ + + + + +Progress appearance none writing mode horizontal + + + + + +

The progress element below should match the correct writing mode.

+ \ No newline at end of file diff --git a/testing/web-platform/tests/css/css-writing-modes/progress-appearance-none-vertical.optional.html b/testing/web-platform/tests/css/css-writing-modes/progress-appearance-none-vertical.optional.html new file mode 100644 index 000000000000..1b45c6bb8f7e --- /dev/null +++ b/testing/web-platform/tests/css/css-writing-modes/progress-appearance-none-vertical.optional.html @@ -0,0 +1,12 @@ + + + + +Progress appearance none writing mode vertical + + + + + +

The progress element below should match the correct writing mode.

+ \ No newline at end of file -- 2.11.4.GIT