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

Side by Side Diff: LayoutTests/paint/invalidation/fixed-position-with-text-expected.html

Issue 1330993002: Invalidate all non-composited descendants on fixed-position changes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Higher expectations Created 5 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 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 body {
6 height: 300px;
7 }
8 #div {
9 position: relative;
10 float: left;
11 z-index: 10;
12 }
13 span {
14 display: inline-block;
15 border: 1px solid black;
16 }
17 span:hover {
18 color: green;
19 }
20 </style>
21 </head>
22 <body>
23 <div id="div">
24 <span>This text should be in a box</span>
25 </div>
26 </body>
27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698