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

Side by Side Diff: samples/swarm/test/swarm_ui_lib/layout/layout.scss

Issue 23717003: Reorganize tests for samples so the test is discoverable from the sample (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file */ 1 /* Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file */
2 /* for details. All rights reserved. Use of this source code is governed by a */ 2 /* for details. All rights reserved. Use of this source code is governed by a */
3 /* BSD-style license that can be found in the LICENSE file. */ 3 /* BSD-style license that can be found in the LICENSE file. */
4 4
5 @stylet AdaptiveLayout { 5 @stylet AdaptiveLayout {
6 #grid { 6 #grid {
7 display: -dart-grid; 7 display: -dart-grid;
8 grid-columns: auto minmax(min-content, 1fr); 8 grid-columns: auto minmax(min-content, 1fr);
9 grid-rows: auto minmax(min-content, 1fr) auto; 9 grid-rows: auto minmax(min-content, 1fr) auto;
10 } 10 }
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 #E { 307 #E {
308 grid-column: 1; grid-row: 1; 308 grid-column: 1; grid-row: 1;
309 grid-column-span: 2; 309 grid-column-span: 2;
310 grid-row-span: 2; 310 grid-row-span: 2;
311 grid-layer: 5; 311 grid-layer: 5;
312 grid-column-align: center; 312 grid-column-align: center;
313 grid-row-align: center; 313 grid-row-align: center;
314 } 314 }
315 } 315 }
316 316
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698