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

Unified Diff: LayoutTests/compositing/squashing/squash-overflow-hidden-scrolltop-expected.html

Issue 264013002: Allow layers that need squashing to draw into the squashing layer in some cases. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added FIXME. Created 6 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/compositing/squashing/squash-overflow-hidden-scrolltop-expected.html
diff --git a/LayoutTests/compositing/squashing/squash-overflow-hidden-scrolltop-expected.html b/LayoutTests/compositing/squashing/squash-overflow-hidden-scrolltop-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..b0c977319b6599b7910add0a048d59ad2e11709d
--- /dev/null
+++ b/LayoutTests/compositing/squashing/squash-overflow-hidden-scrolltop-expected.html
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+
+<style type="text/css" media="screen">
+ .container {
+ display: inline-block;
+ width: 200px;
+ height: 200px;
+ overflow: hidden;
+ margin: 10px;
+ border: 1px solid black;
+ }
+
+ .inner {
+ width: 100%;
+ height: 1000px;
+ background-color: blue;
+ }
+
+ .nextto {
+ position: absolute;
+ top: 20px;
+ left: 20px;
+ width: 100px;
+ height: 100px;
+ }
+
+ .bottom {
+ height: 50%;
+ width: 100%;
+ background-color: green;
+ }
+</style>
+<div class="container" style="position: relative;">
+ <div class="inner" style="position: relative;">
+ <div class="bottom"></div>
+ </div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698