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

Unified Diff: LayoutTests/compositing/squashing/abspos-under-abspos-overflow-scroll.html

Issue 211683003: Return an infinite rect when calling RenderLayerClipper::parentClipRects on the root context layer (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed nit. Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/compositing/squashing/abspos-under-abspos-overflow-scroll-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/compositing/squashing/abspos-under-abspos-overflow-scroll.html
diff --git a/LayoutTests/compositing/squashing/abspos-under-abspos-overflow-scroll.html b/LayoutTests/compositing/squashing/abspos-under-abspos-overflow-scroll.html
new file mode 100644
index 0000000000000000000000000000000000000000..0417ab42893266badd88cd26ac14933e9bf38e1a
--- /dev/null
+++ b/LayoutTests/compositing/squashing/abspos-under-abspos-overflow-scroll.html
@@ -0,0 +1,34 @@
+<style type="text/css">
+ .first {
+ height:400px;
+ background-color: red;
+ -webkit-transform: translateZ(0);
+ }
+
+ .second {
+ left: 100px;
+ bottom: 0px;
+ background-color:blue;
+ width:7px;
+ height:562px;
+ position: absolute; -webkit-transform: translateX(0)
+ }
+
+ .outer {
+ overflow: scroll;
+ /* FIXME: make this height: 500px to expose another bug */
+ height: 600px;
+ width: 500px;
+ position: absolute;
+ bottom:10px;
+ background-color: grey;
+ }
+</style>
+<div class="outer">
+ <div class="first"> </div>
+ <div class="second"> </div>
+</div>
+<script>
+ if (window.internals)
+ window.internals.settings.setLayerSquashingEnabled(true);
+</script>
« no previous file with comments | « no previous file | LayoutTests/compositing/squashing/abspos-under-abspos-overflow-scroll-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698