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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-item-z-index-stacking-context.html

Issue 146773002: [CSS Grid Layout] Rename grid-definition-{columns|rows} to match the new syntax (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed renaming issues with some tests. Created 6 years, 10 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <link href="resources/grid.css" rel="stylesheet"> 4 <link href="resources/grid.css" rel="stylesheet">
5 <style> 5 <style>
6 .grid { 6 .grid {
7 grid-definition-rows: 100px; 7 grid-template-rows: 100px;
8 grid-definition-columns: 200px 200px; 8 grid-template-columns: 200px 200px;
9 width: -webkit-fit-content; 9 width: -webkit-fit-content;
10 margin-top: 10px; 10 margin-top: 10px;
11 } 11 }
12 .red { 12 .red {
13 background-color: red; 13 background-color: red;
14 } 14 }
15 .green { 15 .green {
16 background-color: green; 16 background-color: green;
17 } 17 }
18 .positiveZIndex { 18 .positiveZIndex {
(...skipping 19 matching lines...) Expand all
38 </div> 38 </div>
39 39
40 <div class="grid"> 40 <div class="grid">
41 <div class="sizedToGridArea green firstRowBothColumn"></div> 41 <div class="sizedToGridArea green firstRowBothColumn"></div>
42 <div class="sizedToGridArea red negativeZIndex firstRowFirstColumn"></div> 42 <div class="sizedToGridArea red negativeZIndex firstRowFirstColumn"></div>
43 <div class="sizedToGridArea red negativeZIndex firstRowSecondColumn"></div> 43 <div class="sizedToGridArea red negativeZIndex firstRowSecondColumn"></div>
44 </div> 44 </div>
45 45
46 </body> 46 </body>
47 </html> 47 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698