Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(147)

Unified Diff: third_party/WebKit/LayoutTests/imported/csswg-test/css-ui-3/caret-color-019.html

Issue 2537373005: [css-ui] Make caret-color animatable (Closed)
Patch Set: Rebased patch Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/imported/csswg-test/css-ui-3/caret-color-019.html
diff --git a/third_party/WebKit/LayoutTests/imported/csswg-test/css-ui-3/caret-color-019.html b/third_party/WebKit/LayoutTests/imported/csswg-test/css-ui-3/caret-color-019.html
new file mode 100644
index 0000000000000000000000000000000000000000..367539ce1f086c0eaeda888cdafff273b5cb4e62
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/imported/csswg-test/css-ui-3/caret-color-019.html
@@ -0,0 +1,39 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>CSS Basic User Interface Test: caret-color auto 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 'auto' value for caret-color property is not interpolatible.">
+<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: 'auto' },
+ { caretColor: 'lime' }
+ ];
+ var options = {
+ duration: 10,
+ fill: "forwards"
+ };
+
+ var player = textarea.animate(keyframes, options);
+ player.pause();
+ player.currentTime = 5;
+ assert_equals(getComputedStyle(textarea).caretColor, 'rgb(0, 255, 0)');
+ }, "caret-color: auto is not interpolatible");
+</script>
+</body>

Powered by Google App Engine
This is Rietveld 408576698