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

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

Issue 2520873002: [css-ui] Add support for caret-color property (Closed)
Patch Set: Fix tests that were listing all the CSS properties Created 4 years, 1 month 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-008.html
diff --git a/third_party/WebKit/LayoutTests/imported/csswg-test/css-ui-3/caret-color-008.html b/third_party/WebKit/LayoutTests/imported/csswg-test/css-ui-3/caret-color-008.html
new file mode 100644
index 0000000000000000000000000000000000000000..27b0fe5e07c3ee404ad713b6f2d1aad73de07942
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/imported/csswg-test/css-ui-3/caret-color-008.html
@@ -0,0 +1,33 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>CSS Basic User Interface Test: caret-color animation</title>
+<link rel="author" title="Florian Rivoal" href="mailto:florian@rivoal.net">
+<link rel="help" href="http://www.w3.org/TR/css3-ui/#caret-color">
+<link rel="help" href="https://drafts.csswg.org/css-animations-1/#animation">
+<meta name="flags" content="interact animated">
+<meta name="assert" content="Test checks that caret-color is animatable as a color">
+<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: red;
+ animation: caret-many-colors 5s linear alternate infinite;
+ }
+ @keyframes caret-many-colors {
+ 0% { caret-color: lime; }
+ 20% { caret-color: gray; }
+ 40% { caret-color: cyan; }
+ 60% { caret-color: pink; }
+ 80% { caret-color: blue; }
+ 100% { caret-color: brown; }
+ }
+</style>
+<body>
+ <p>Test passes if, when the text area below is focused for editing, the text insertion caret continuously changes colors.</p>
+ <p>The shape of the caret, and whether it flashes, are not part of the test.</p>
+ <textarea autofocus></textarea>
+</body>

Powered by Google App Engine
This is Rietveld 408576698