summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-ui/caret-color-020.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-020.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-020.html')
-rw-r--r--testing/web-platform/tests/css/css-ui/caret-color-020.html46
1 files changed, 46 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-ui/caret-color-020.html b/testing/web-platform/tests/css/css-ui/caret-color-020.html
new file mode 100644
index 0000000000..742c4a1f95
--- /dev/null
+++ b/testing/web-platform/tests/css/css-ui/caret-color-020.html
@@ -0,0 +1,46 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>CSS Basic User Interface Test: caret-color currentcolor test animation</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/web-animations-1/#dom-animatable-animate">
+<link rel="help" href="https://www.w3.org/TR/css3-color/#color0">
+<meta name="assert" content="Test checks that 'currentcolor' value for caret-color property is interpolable.">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<style>
+ textarea {
+ color: magenta;
+ }
+</style>
+<body>
+ <textarea id="textarea"></textarea>
+ <div id=log></div>
+
+ <script>
+ test(
+ function(){
+ var textarea = document.getElementById("textarea");
+ var keyframes = [
+ { caretColor: 'currentcolor' },
+ { caretColor: 'lime' }
+ ];
+ var options = {
+ duration: 10,
+ fill: "forwards"
+ };
+
+ var player = textarea.animate(keyframes, options);
+ player.pause();
+ player.currentTime = 5;
+ var rgb = getComputedStyle(textarea).caretColor.match(/\d+/g);
+ /* Only testing that the rgb value is some intermediary value,
+ but not checking which, as we only care that the value is interpolated,
+ not about the numerical accuracy of interpolation,
+ which is something tests for the animation spec ought to worry about. */
+ assert_true( rgb[0] < 255 && rgb[0] > 0, "the red channel is interpolated");
+ assert_true( rgb[1] < 255 && rgb[1] > 0, "the green channel is interpolated");
+ assert_true( rgb[2] < 255 && rgb[2] > 0, "the blue channel is interpolated");
+ }, "caret-color: currentcolor is interpolable");
+</script>
+</body>