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

Side by Side Diff: LayoutTests/paint/invalidation/invalidate-when-receiving-paint-layer.html

Issue 1337233002: Invalidate paint when allocating a DeprecatedPaintLayer. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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
(Empty)
1 <!doctype HTML>
2 <div style="will-change: transform; position: fixed"></div>
3 <div style="position: relative; border: 1px solid black;">
4 <div id="target" style="opacity: 1; height: 100px; width: 200px;">
chrishtr 2015/09/14 23:07:52 First we paint two composited layers: one for the
5 This text should be very light
6 </div>
7 </div>
8 <script src="../../resources/run-after-layout-and-paint.js"></script>
9 <script>
10 if (window.testRunner)
11 window.testRunner.waitUntilDone();
12 onload = function() {
13 runAfterLayoutAndPaint(function() {
14 target.style.opacity = 0.2;
15 testRunner.notifyDone();
16 });
17 }
18 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698