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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/focus-layers.html

Issue 2327223002: Move all remaining fast/repaint tests to paint/invalidation (Closed)
Patch Set: Created 4 years, 3 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 <html>
2 <head>
3 <style type="text/css">
4 a {
5 border: 2px solid red;
6 position: relative;
7 }
8 a span.relative {
9 border: 2px solid blue;
10 white-space: nowrap;
11 position: relative;
12 top: 10em;
13 }
14 a span.absolute {
15 border: 2px solid green;
16 white-space: nowrap;
17 position: absolute;
18 top: 12em;
19 }
20 </style>
21
22 </head>
23 <body>
24 <div>
25
26 Both <a href="#" id="link">this and <span class="relative">this should have corr ectly placed focus rings</span> <span class = "absolute">but not this</span>.</a >
27 </div>
28
29 <script>
30 document.getElementById('link').focus();
31 </script>
32 </body>
33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698