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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/compositing-reason-removed.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/layer-creation/compositing-reason-removed.html -->
2 <!DOCTYPE html>
3 <style>
4 #square {
5 background-color: blue;
6 width: 30px;
7 height: 30px;
8 position: relative;
9 -webkit-backface-visibility: hidden;
10 }
11 </style>
12
13 <script src="resources/paint-invalidation-test.js"></script>
14 <script>
15 function paintInvalidationTest() {
16 // Remove the div's only compositing reason. This should trigger a repaint.
17 document.getElementById("square").style.webkitBackfaceVisibility = "visible" ;
18 }
19 runPaintInvalidationTest();
20 </script>
21
22 <div id="square"></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698