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: third_party/WebKit/LayoutTests/paint/invalidation/spv2/clipping-should-not-repaint-composited-descendants-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 .spacer {
4 position: relative;
5 width: 300px;
6 height: 300px;
7 }
8
9 .clipping-container {
10 position: absolute;
11 height: 300px;
12 transform: translateZ(0);
13 width: 100%;
14 clip: rect(100px, 200px, 200px, 100px);
15 }
16
17 .clipped-composited-child {
18 width: 250px;
19 height: 250px;
20 background-color: yellow;
21 border: 1px solid black;
22 transform: translateZ(0);
23 }
24 </style>
25 <div class="spacer">
26 <div class="clipping-container">
27 <div class="clipped-composited-child"></div>
28 </div>
29 </div>
30 <div class="spacer">
31 <div class="clipping-container">
32 <div class="clipped-composited-child"></div>
33 </div>
34 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698