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

Unified Diff: third_party/WebKit/LayoutTests/editing/caret/caret-color-012.html

Issue 2520873002: [css-ui] Add support for caret-color property (Closed)
Patch Set: Patch for landing applying suggested changes 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/editing/caret/caret-color-012.html
diff --git a/third_party/WebKit/LayoutTests/editing/caret/caret-color-012.html b/third_party/WebKit/LayoutTests/editing/caret/caret-color-012.html
new file mode 100644
index 0000000000000000000000000000000000000000..4688feffa7bae067d1d424eef44c0b4a0e4096f2
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/editing/caret/caret-color-012.html
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>CSS Basic User Interface Test: caret-color: auto</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">
+<meta name="flags" content="interact should">
+<meta name="assert" content="Test checks that caret-color:auto is inherited as auto and resolves to the value of the color property at used value time">
+<style>
+ textarea {
+ font-size: 3em;
+ font-weight: bold;
+ width: 10em;
+ padding: 10px;
+ background: black; /* the color of a thin object like the caret is easier to see on a black background. */
+
+ color: lime;
+ }
+ div {
+ caret-color: auto;
+ color: red;
+ }
+</style>
+<body>
+ <p>Test passes if, when the text area below is focused for editing, the text insertion caret is green.</p>
+ <p>The shape of the caret, and whether it flashes, are not part of the test.</p>
+ <div>
+ <textarea autofocus></textarea>
+ </div>
+</body>

Powered by Google App Engine
This is Rietveld 408576698