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

Unified Diff: LayoutTests/fast/block/positioning/positioned-layout-in-line-expected.html

Issue 1178893003: Fix regression on positioned movement layout on a line from r195813 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated Created 5 years, 6 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/positioning/positioned-layout-in-line-expected.html
diff --git a/LayoutTests/fast/block/positioning/positioned-layout-in-line-expected.html b/LayoutTests/fast/block/positioning/positioned-layout-in-line-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..2ddec293c37fe948ea45ff88a98f3e63711b43fd
--- /dev/null
+++ b/LayoutTests/fast/block/positioning/positioned-layout-in-line-expected.html
@@ -0,0 +1,18 @@
+<!DOCTYPE HTML>
+<style>
+ #container {
+ position: relative;
+ }
+ .img {
+ position: absolute;
+ background-color: green;
+ height: 10px;
+ width: 10px;
+ top: 0;
+ }
+</style>
+<div id="container">
+ <input type="text"></input>
+ <img class="img" id="img">
+</div>
+crbug.com/498290: Tests positioned movement layout when it has a non-static block position and sits in a line. The green image should be beside the input box.
« no previous file with comments | « LayoutTests/fast/block/positioning/positioned-layout-in-line.html ('k') | Source/core/layout/LayoutBlock.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698