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

Unified Diff: third_party/WebKit/LayoutTests/fast/block/positioning/complex-positioned-movement-inline-expected.html

Issue 1323313004: Don't re-implement containing block logic when marking container chains for layout (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated Created 4 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
Index: third_party/WebKit/LayoutTests/fast/block/positioning/complex-positioned-movement-inline-expected.html
diff --git a/third_party/WebKit/LayoutTests/fast/block/positioning/complex-positioned-movement-inline-expected.html b/third_party/WebKit/LayoutTests/fast/block/positioning/complex-positioned-movement-inline-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..495ba49ee349e843d3701e90f3f940e282ab0342
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/block/positioning/complex-positioned-movement-inline-expected.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<style>
+.block {
+ position: absolute;
+ left:100px;
+ top:0;
+ width: 100px;
+ height: 100px;
+ background-color: green;
+}
+.relative-inline {
+ position:relative;
+ display: inline;
+}
+</style>
+<p>crbug.com/517369: There should be no red. </p>
+<div style="position: relative;">
+ <span class="relative-inline">
+ <div>
+ <span class="relative-inline">
+ <div class="block" id="inner"></div>
+ </span>
+ </div>
+ </span>
+</div>
+

Powered by Google App Engine
This is Rietveld 408576698