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

Unified Diff: third_party/WebKit/LayoutTests/fast/block/positioning/relative-with-implicit-height-containing-block.html

Issue 2288563002: Treat implicit height on positioned objects as non-auto (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: bug 61049 Created 4 years, 4 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/relative-with-implicit-height-containing-block.html
diff --git a/third_party/WebKit/LayoutTests/fast/block/positioning/relative-with-implicit-height-containing-block.html b/third_party/WebKit/LayoutTests/fast/block/positioning/relative-with-implicit-height-containing-block.html
new file mode 100644
index 0000000000000000000000000000000000000000..2997a776ca1ff0e9025a1f2e42e108e926640f50
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/block/positioning/relative-with-implicit-height-containing-block.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html>
+<style>
+#wrapper {
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ bottom: 0px;
+ right: 0px;
+}
+#child {
+ position: relative;
+ width: 100px;
+ height: 100px;
+ top: 50%;
+ background-color: green;
+}
+#ref {
+ position: absolute;
+ width: 100px;
+ height: 100px;
+ top: 150px;
+ background-color: red;
+}
+</style>
+<p>crbug.com/61049: There should be no red box below.</p>
+<div id="log"></div>
+<div id="ref"></div>
+<div style="position: absolute; height: 200px; width: 200px; top: 50px;">
+ <div id="wrapper">
+ <div id="child" data-positioned-offset-y=100></div>
+ </div>
+</div>
+<script src="../../../resources/check-layout.js"></script>
+<script>
+ checkLayout("#child", log);
+</script>

Powered by Google App Engine
This is Rietveld 408576698