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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/overflow-hidden-to-visible.html

Issue 2007003003: Check subtree paint invalidation when overflow clip status changes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2743
Patch Set: Created 4 years, 7 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 Tests paint invalidation of overflowing contents when the container's overflow c hanges from hidden to visible.
3 Passes if there is no red.
4 <div id="indicator" style="position: absolute; z-index: -1; width: 200px; height : 400px; background-color: red"></div>
5 <div id="container" style="width: 200px; height: 200px; overflow: hidden">
6 <div style="width: 0; height: 0">
7 <div id="green" style="width: 200px; height: 400px; background-color: green" ></div>
8 </div>
9 </div>
10 <script src="../../resources/run-after-layout-and-paint.js"></script>
11 <script>
12 runAfterLayoutAndPaint(function() {
13 container.style.overflow = 'visible';
14 }, true);
15 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698