| Index: LayoutTests/fast/css/text-decoration-color-on-hover.html
|
| diff --git a/LayoutTests/fast/css/text-decoration-color-on-hover.html b/LayoutTests/fast/css/text-decoration-color-on-hover.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..969aebd6d593e28208957b554a7d7057f103c45e
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/css/text-decoration-color-on-hover.html
|
| @@ -0,0 +1,37 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<head>
|
| +<style>
|
| +.outer {
|
| + text-decoration: underline;
|
| + color: blue;
|
| +}
|
| +.inner {
|
| + color: blue;
|
| +}
|
| +
|
| +.outer:hover {
|
| + color: red;
|
| +}
|
| +
|
| +</style>
|
| +</head>
|
| +<body>
|
| +<p>
|
| + <span class=outer>
|
| + <span class=inner>
|
| + Hover me and then hover away
|
| + </span>
|
| + </span>
|
| +</p>
|
| +<script>
|
| +document.body.offsetTop; // Force layout. The mouse is not tracked before first layout.
|
| +
|
| +if (window.eventSender)
|
| + eventSender.mouseMoveTo(10, 18); // Hover.
|
| +
|
| +document.body.offsetTop; // Update layout for the hovered state.
|
| +</script>
|
| +
|
| +</body>
|
| +</html>
|
|
|