| Index: third_party/WebKit/LayoutTests/editing/caret/caret-color-011.html
|
| diff --git a/third_party/WebKit/LayoutTests/editing/caret/caret-color-011.html b/third_party/WebKit/LayoutTests/editing/caret/caret-color-011.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a0ca95a396eb92eb39f44d0df6fee01f30ef99fb
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/editing/caret/caret-color-011.html
|
| @@ -0,0 +1,28 @@
|
| +<!DOCTYPE html>
|
| +<meta charset="utf-8">
|
| +<title>CSS Basic User Interface Test: caret-color contenteditable</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">
|
| +<meta name="assert" content="Test checks that caret-color can be set on a contenteditable element">
|
| +<style>
|
| + div {
|
| + 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: lime;
|
| + }
|
| +</style>
|
| +<body>
|
| + <p>Test passes if, when when the editable element below is focused 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 id="test" contenteditable>Focus this editable element</div>
|
| + <script>
|
| + window.onload = function() {
|
| + document.getElementById("test").focus();
|
| + }
|
| + </script>
|
| +</body>
|
|
|