commit 7b902bdfbe0dfa1376afe13f35c44e624213addb parent c21f93c45bad2312e3b74d924380a5a9b8bdb14c Author: Joey Arhar <jarhar@chromium.org> Date: Thu, 9 Oct 2025 20:34:27 +0000 Bug 1992191 [wpt PR 55167] - Add WPTs for SelectMobileDesktopParity, a=testonly Automatic update from web-platform-tests Add WPTs for SelectMobileDesktopParity It was pointed out that we could write interoperable WPTs for the native appearance this way: https://github.com/whatwg/html/pull/11460#issuecomment-3302089935 Bug: 439964654 Change-Id: Iaba3a475cf6f5414619ef7e081e1f257a41a6f01 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6967020 Reviewed-by: Dominic Farolino <dom@chromium.org> Commit-Queue: Joey Arhar <jarhar@chromium.org> Cr-Commit-Position: refs/heads/main@{#1523858} -- wpt-commits: 47cbbd49085203c27392abcea9560b372593dd6e wpt-pr: 55167 Diffstat:
4 files changed, 32 insertions(+), 0 deletions(-)
diff --git a/testing/web-platform/tests/html/semantics/forms/the-select-element/select-multiple-size-1-ref.html b/testing/web-platform/tests/html/semantics/forms/the-select-element/select-multiple-size-1-ref.html @@ -0,0 +1,6 @@ +<!DOCTYPE html> +<select multiple size=4 style="field-sizing: content"> + <option>one</option> + <option>two</option> + <option>three</option> +</select> diff --git a/testing/web-platform/tests/html/semantics/forms/the-select-element/select-multiple-size-1.tentative.html b/testing/web-platform/tests/html/semantics/forms/the-select-element/select-multiple-size-1.tentative.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<link rel=author href="mailto:jarhar@chromium.org"> +<link rel=help href="https://github.com/whatwg/html/issues/8189"> +<link rel=mismatch href="select-multiple-size-1-ref.html"> + +<select multiple size=1 style="field-sizing: content"> + <option>one</option> + <option>two</option> + <option>three</option> +</select> diff --git a/testing/web-platform/tests/html/semantics/forms/the-select-element/select-multiple-size-4-ref.html b/testing/web-platform/tests/html/semantics/forms/the-select-element/select-multiple-size-4-ref.html @@ -0,0 +1,6 @@ +<!DOCTYPE html> +<select multiple> + <option>one</option> + <option>two</option> + <option>three</option> +</select> diff --git a/testing/web-platform/tests/html/semantics/forms/the-select-element/select-multiple-size-4.tentative.html b/testing/web-platform/tests/html/semantics/forms/the-select-element/select-multiple-size-4.tentative.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<link rel=author href="mailto:jarhar@chromium.org"> +<link rel=help href="https://github.com/whatwg/html/issues/8189"> +<link rel=match href="select-multiple-size-4-ref.html"> + +<select multiple size=4> + <option>one</option> + <option>two</option> + <option>three</option> +</select>