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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/should-not-repaint-composited-descendants-as-text.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 <!-- Based on compositing/repaint/should-not-repaint-composited-descendants.html -->
2 <!DOCTYPE html>
3 <style>
4 #composited-box {
5 backface-visibility: hidden;
6 position: absolute;
7 background-color: green;
8 clip: rect(40px, 110px, 110px, 40px);
9 }
10 .child {
11 width: 50px;
12 height: 50px;
13 background-color: green;
14 }
15 .composited {
16 backface-visibility: hidden;
17 }
18 </style>
19 <script src="resources/paint-invalidation-test.js"></script>
20 <script>
21 if (window.testRunner)
22 testRunner.dumpAsText();
23 function paintInvalidationTest() {
24 // This will cause a full layer repaint, but should not include the composit ed child.
25 document.getElementById('composited-box').style.clip = 'rect(30px, 120px, 12 0px, 30px)';
26 }
27 window.onload = runPaintInvalidationTest;
28 </script>
29 <div id="composited-box">
30 <div class="child"></div>
31 <div class="composited child"></div>
32 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698