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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/hover-pseudo-borders-expected.html

Issue 2010243002: Remove paint/invalidation/spv2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 <html>
3 <head>
4 <style>
5 .hitregion {
6 width: 100px;
7 height: 100px;
8 background-color: green;
9 }
10 .hitregion:after {
11 content: "";
12 border: 40px solid;
13 outline: 10px solid;
14 position: absolute;
15 width: 0;
16 height: 0;
17 margin-left: 140px;
18 margin-top: 10px;
19 color: green;
20 }
21 </style>
22 </head>
23 <body>
24 <!--
25 REGRESSION: :hover doesn't work on :after content with borders or outlines.
26 To test this bug outside DRT, hover on the square below.
27 This test passes if there are two green squares.
28 -->
29 <div class="hitregion"></div>
30 </body>
31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698