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

Unified Diff: LayoutTests/fast/css-grid-layout/named-grid-areas-dynamic-with-media-query-expected.html

Issue 680063005: [CSS Grid Layout] Redefining grids inside media queries does not work (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/css-grid-layout/named-grid-areas-dynamic-with-media-query-expected.html
diff --git a/LayoutTests/fast/css-grid-layout/named-grid-areas-dynamic-with-media-query-expected.html b/LayoutTests/fast/css-grid-layout/named-grid-areas-dynamic-with-media-query-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..9bcdf86cc3611b2d2cd3a43d38a366e54471b64a
--- /dev/null
+++ b/LayoutTests/fast/css-grid-layout/named-grid-areas-dynamic-with-media-query-expected.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html>
+<head>
+<style type="text/css">
+.one { background-color: beige; width: 50%; }
+.two { background-color: antiquewhite; width: 25%; }
+.three { background-color: bisque; width: 25%; }
+.one, .two, .three { min-height: 100px; float: left; }
+</style>
+<body>
+<p>The test passes if you see 3 blocks bellow arranged on a single row</p>
+<div class="one"></div>
+<div class="two"></div>
+<div class="three"></div>
+</body>

Powered by Google App Engine
This is Rietveld 408576698