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

Unified Diff: LayoutTests/fast/css/transformed-overflow-hidden-clips-fixed.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.html
diff --git a/LayoutTests/fast/css/transformed-overflow-hidden-clips-fixed.html b/LayoutTests/fast/css/transformed-overflow-hidden-clips-fixed.html
new file mode 100644
index 0000000000000000000000000000000000000000..a559777ac050e3b73edfa99291c426315baa6099
--- /dev/null
+++ b/LayoutTests/fast/css/transformed-overflow-hidden-clips-fixed.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<style>
+#transformed {
+ overflow: hidden;
+ -webkit-transform: translateZ(0);
+ height: 100px;
+ width: 100px;
+ background-color: salmon;
+}
+#fixed {
+ position: fixed;
+ background-color: chartreuse;
+ width: 100px;
+ height: 100px;
+ top: -50px;
+}
+</style>
+<div id="transformed">
+ <div id="fixed"></div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698