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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/overflow/clip-parent-reset.html

Issue 2350363004: Reset clip parent in CompositedLayerMapping::updateClipParent (Closed)
Patch Set: spv2 expectation Created 4 years, 2 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 <div style="width:150px; height:150px; overflow:hidden; opacity:0.8; background: red;">
3 <div style="width:100px; height:100px; overflow:hidden;">
4 <div id="bug" style="width:200px; height:200px; position:absolute; trans form:translateZ(0); background:green;">
5 </div>
6 </div>
7 </div>
8 This test verifies the clip parent of a layer gets correctly reset when it gaine d a non-composited clip.
9 <script src="../../resources/run-after-layout-and-paint.js"></script>
10 <script>
11 runAfterLayoutAndPaint(function() {
12 document.getElementById("bug").style.position = "static";
13 }, true);
14 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698