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

Unified Diff: LayoutTests/fast/block/float/containing-block-change-compositing.html

Issue 1236793005: Always include floating children into visual overflow (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: NeedsRebaselines (see the try job results of the previous patch set for expectation changes) Created 5 years, 5 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/block/float/containing-block-change-compositing.html
diff --git a/LayoutTests/fast/block/float/containing-block-change-compositing.html b/LayoutTests/fast/block/float/containing-block-change-compositing.html
new file mode 100644
index 0000000000000000000000000000000000000000..ae00ac464c30be765d39014f6e2ebf30d3f3f92f
--- /dev/null
+++ b/LayoutTests/fast/block/float/containing-block-change-compositing.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<script src="../../../resources/run-after-layout-and-paint.js"></script>
+<script>
+runAfterLayoutAndPaint(function() {
+ document.getElementById('container').style.transform = 'translateZ(0) translateX(100px)';
+}, true);
+</script>
+<body style="margin: 0">
+ <div style="height: 100px">
+ Tests layout and repaint of floating descendants of a container changing 3D transform. Passes if there is no red.
+ </div>
+ <div id="indicator" style="position: absolute; top: 100px; left: 100px; width: 100px; height: 100px; background-color: red"></div>
+ <div>
+ <div id="container" style="width: 0; height: 0">
+ <div style="float: left; width: 100px; height: 100px; background-color: green"></div>
+ </div>
+ </div>
+</body>
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/block/float/containing-block-change-compositing-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698