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

Side by Side Diff: LayoutTests/fast/history/visited-link-hover-emphasis-color.html

Issue 917973002: :visited invalidation for remaining text-related properties. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed extra space in reference Created 5 years, 10 months 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script>
3 if (window.testRunner) {
4 testRunner.keepWebHistory();
5 testRunner.waitUntilDone();
6 }
7 </script>
8 <style>
9 a { -webkit-text-emphasis-style: filled }
10 div { -webkit-text-emphasis-color: red; }
11 a:visited { -webkit-text-emphasis-color: inherit }
12 a, a:hover { -webkit-text-emphasis-color: green; color: initial; text-decoratio n: none }
13 </style>
14 <div>
15 <a id="anchor" href="">Emphasis should be green when hovered</a>
16 </div>
17 <script>
18 if (window.testRunner) {
19 testRunner.displayAsyncThen(function(){
20 if (window.eventSender);
21 eventSender.mouseMoveTo(anchor.offsetLeft + 1, anchor.offsetTop + 1) ;
22 window.testRunner.notifyDone();
23 });
24 }
25 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698