commit 9dea8cb0ed05df67d2ec209d352636b63b1a23c4 parent 737e02acade87c542b7bfd5f5c17ddfb358b8ea9 Author: helvete003 <d.obieglo@gmail.com> Date: Tue, 16 Dec 2025 08:48:09 +0000 Bug 2005858 [wpt PR 56724] - layout: Do not set `cursor: text` on `<input type=color>`, a=testonly Automatic update from web-platform-tests Default cursor should'nt be Text on input type color elements Signed-off-by: helvete003 <d.obieglo@gmail.com> -- wpt-commits: 2a1fdfaaeadea7bea70a551785aa5c8e68f69f7c wpt-pr: 56724 Diffstat:
| A | testing/web-platform/tests/css/css-ui/cursor-input-001-manual.html | | | 11 | +++++++++++ |
1 file changed, 11 insertions(+), 0 deletions(-)
diff --git a/testing/web-platform/tests/css/css-ui/cursor-input-001-manual.html b/testing/web-platform/tests/css/css-ui/cursor-input-001-manual.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<title>CSS Basic User Interface Test: cursor on a color picker</title> +<link rel="author" title="Daniel Obieglo" href="mailto:d.obieglo@gmail.com"> +<link rel="help" href="http://www.w3.org/TR/css3-ui/#cursor"> +<meta name="flags" content="interact"> +<meta charset="UTF-8"> +<meta name="assert" content="The cursor should not change on a hover over a input color type"> +<body> + <p>The test passes if, when moved over the color picker, the cursor stays unchanged as pointer.</p> + <input type="color"> +</body>