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

Unified Diff: LayoutTests/fast/css-grid-layout/column-property-should-not-apply-on-grid-container.html

Issue 493683002: [CSS Grid Layout] Test coverage for column-* properties. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | LayoutTests/fast/css-grid-layout/column-property-should-not-apply-on-grid-container-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/css-grid-layout/column-property-should-not-apply-on-grid-container.html
diff --git a/LayoutTests/fast/css-grid-layout/column-property-should-not-apply-on-grid-container.html b/LayoutTests/fast/css-grid-layout/column-property-should-not-apply-on-grid-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..00e3379a9b915d7bab27743ac8962583e31a74d2
--- /dev/null
+++ b/LayoutTests/fast/css-grid-layout/column-property-should-not-apply-on-grid-container.html
@@ -0,0 +1,30 @@
+<!DOCTYPE html>
+<html>
+<link href="resources/grid.css" rel="stylesheet">
+<style>
+.grid
+{
+ -webkit-column-width: 1em;
+ -moz-column-width: 1em;
+ column-width: 1em;
+}
+.inline-grid
+{
+ -webkit-column-width: 1em;
+ -moz-column-width: 1em;
+ column-width: 1em;
Julien - ping for review 2014/08/20 18:14:48 Let's get rid of the implicit assumption that the
Sunil Ratnu 2014/08/21 05:11:17 Thanks Julien for the review. I have made the sugg
+}
+</style>
+
+<body>
+
+<div class='grid'>
+AAAAAAAAAA BBBBBBBBBB CCCCCCCCCC DDDDDDDDD
+</div>
+
+<div class='inline-grid'>
+AAAAAAAAAA BBBBBBBBBB CCCCCCCCCC DDDDDDDDD
+</div>
+
+</body>
+</html>
« no previous file with comments | « no previous file | LayoutTests/fast/css-grid-layout/column-property-should-not-apply-on-grid-container-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698