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

Side by Side Diff: LayoutTests/fast/repaint/paint-invalidation-with-opacity.html

Issue 360193002: Delete paint invalidaiton code in RenderLayerModelObject::styleWillChange. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Merged. Created 6 years, 5 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 id="target" style="width: 100px; height: 100px; background: lightblue"></di v>
3 <script src="../../resources/run-after-display.js"></script>
4 <script>
5 if (testRunner) {
6 testRunner.dumpAsText();
7 testRunner.waitUntilDone();
8 }
9
10 runAfterDisplay(function() {
11 if (internals)
12 window.internals.startTrackingRepaints(document);
13
14 document.getElementById('target').style.opacity = 0.5;
15
16 if (testRunner)
17 testRunner.setCustomTextOutput(window.internals.layerTreeAsText(document , internals.LAYER_TREE_INCLUDES_REPAINT_RECTS));
18
19 testRunner.notifyDone();
20 });
21 </script>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/repaint/paint-invalidation-with-opacity-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698