summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-ui/caret-color-017.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/css/css-ui/caret-color-017.html
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-ui/caret-color-017.html')
-rw-r--r--testing/web-platform/tests/css/css-ui/caret-color-017.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-ui/caret-color-017.html b/testing/web-platform/tests/css/css-ui/caret-color-017.html
new file mode 100644
index 0000000000..cfd7bbd0e1
--- /dev/null
+++ b/testing/web-platform/tests/css/css-ui/caret-color-017.html
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>CSS Basic User Interface Test: caret-color transition</title>
+<link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com">
+<link rel="help" href="http://www.w3.org/TR/css3-ui/#caret-color">
+<link rel="help" href="https://www.w3.org/TR/css-transitions-1/#transition-shorthand-property">
+<meta name="flags" content="interact">
+<meta name="assert" content="Test checks that caret-color can be used in a transition">
+<style>
+ textarea {
+ font-size: 3em;
+ font-weight: bold;
+ width: 10em;
+ padding: 10px;
+ background: black; color: white; /* the color of a thin object like the caret is easier to see on a black background. */
+
+ caret-color: magenta;
+ transition: caret-color 5s;
+ }
+
+ textarea:focus {
+ caret-color: lime;
+ }
+</style>
+<body>
+ <p>Test passes if, when the text area below is focused for editing, the text insertion caret color gradually changes from magenta to green.</p>
+ <p>The shape of the caret, and whether it flashes, are not part of the test.</p>
+ <textarea></textarea>
+</body>