| Index: LayoutTests/fast/history/visited-link-hover-outline-color.html
|
| diff --git a/LayoutTests/fast/history/visited-link-hover-outline-color.html b/LayoutTests/fast/history/visited-link-hover-outline-color.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d13c1748fefb653855fadad7220895e9c1f579e3
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/history/visited-link-hover-outline-color.html
|
| @@ -0,0 +1,21 @@
|
| +<!DOCTYPE html>
|
| +<script>
|
| +if (window.testRunner) {
|
| + testRunner.keepWebHistory();
|
| + testRunner.waitUntilDone();
|
| +}
|
| +</script>
|
| +<style>
|
| +a { outline: solid red 10px; text-decoration: none; color: initial }
|
| +a:hover:visited { outline-color: green }
|
| +</style>
|
| +<a id="anchor" href="">Should have a green outline when hovered</a>
|
| +<script>
|
| +if (window.testRunner) {
|
| + testRunner.displayAsyncThen(function(){
|
| + if (window.eventSender);
|
| + eventSender.mouseMoveTo(anchor.offsetLeft + 1, anchor.offsetTop + 1);
|
| + window.testRunner.notifyDone();
|
| + });
|
| +}
|
| +</script>
|
|
|