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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/repaint-via-layout-offset-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 <style>
3 #container {
4 position: absolute;
5 z-index: 0;
6 left: 50px;
7 top: 50px;
8 }
9
10 .child {
11 position: absolute;
12 width: 40px;
13 height: 40px;
14 background-color: red;
15 }
16
17 .embiggen {
18 width: 50px;
19 height: 50px;
20 background-color: green;
21 }
22 </style>
23 <div style="width:200px; height:200px; background-color: lightblue"></div>
24 <div id="container">
25 <span class="child embiggen"></span>
26 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698