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

Unified Diff: LayoutTests/fast/dynamic/static-to-relative-with-absolute-and-static-child-expected.html

Issue 1218023004: Fix a regression when position:static with absolute child changed to relative (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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/dynamic/static-to-relative-with-absolute-and-static-child-expected.html
diff --git a/LayoutTests/fast/dynamic/static-to-relative-with-absolute-and-static-child-expected.html b/LayoutTests/fast/dynamic/static-to-relative-with-absolute-and-static-child-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..cbd3710264205dd3d8abb6bbdbfba34cbf7e1aee
--- /dev/null
+++ b/LayoutTests/fast/dynamic/static-to-relative-with-absolute-and-static-child-expected.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<style>
+#abs {
+ width:100px; height:50px;
+ position:absolute;
+ background-color:blue;
+}
+#next {
+ width:50px; height:100px;
+ margin-top:50px;
+ background-color:orange;
+}
+</style>
+<div id=outer>
+ <div id=abs></div>
+ <div id=next></div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698