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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/fieldset/fieldset-display-grid-expected.html

Issue 2215133005: Add grid/flex layout support for <fieldset> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed more ClusterFuzz tests Created 4 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .grid > div {
4 border: 1px solid;
5 }
6 .grid {
7 border: 0px;
8 display: grid;
9 height: 500px;
10 padding: 0px;
11 width: 500px;
12 }
13 </style>
14
15 This should be displayed as a 4x4 grid.
16
17 <div class="grid">
18 <div style="grid-column: 1; grid-row: 1;">row/column: 1/1</div>
19 <div style="grid-column: 2; grid-row: 1;">row/column: 1/2</div>
20 <div style="grid-column: 1: grid-row: 2;">row/column: 2/1</div>
21 <div style="grid-column: 2; grid-row: 2;">row/column: 2/2</div>
22 </div>
23
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698