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

Unified Diff: LayoutTests/fast/css/transformed-overflow-hidden-clips-fixed-expected.html

Issue 179833006: Fix clippingContainer for fixed position elements (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: const_cast Created 6 years, 10 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/fast/css/transformed-overflow-hidden-clips-fixed-expected.html
diff --git a/LayoutTests/fast/css/transformed-overflow-hidden-clips-fixed-expected.html b/LayoutTests/fast/css/transformed-overflow-hidden-clips-fixed-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..80b07bb9bd921dd3d6912b22038269a01e6040a4
--- /dev/null
+++ b/LayoutTests/fast/css/transformed-overflow-hidden-clips-fixed-expected.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<style>
+div {
+ width: 100px;
+ height: 50px;
+}
+#transformed {
+ overflow: hidden;
+ -webkit-transform: translateZ(0);
+ height: 100px;
+ width: 100px;
+
+}
+#fixed {
+ position: fixed;
+ background-color: chartreuse;
+ width: 100px;
+ height: 100px;
+ top: -50px;
+}
+</style>
+<div style="background-color: chartreuse;"></div>
+<div style="background-color: salmon;"></div>
« no previous file with comments | « LayoutTests/fast/css/transformed-overflow-hidden-clips-fixed.html ('k') | Source/core/rendering/RenderObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698