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

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

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

Powered by Google App Engine
This is Rietveld 408576698