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

Side by Side Diff: PerformanceTests/Layout/fixed-grid-lots-of-data.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 <style> 4 <style>
5 html, body { 5 html, body {
6 margin: 0; 6 margin: 0;
7 height: 100%; 7 height: 100%;
8 } 8 }
9 9
10 body { 10 body {
11 display: grid; 11 display: grid;
12 grid-definition-rows: repeat(100, 200px); 12 grid-template-rows: repeat(100, 200px);
13 grid-definition-columns: repeat(20, 200px);; 13 grid-template-columns: repeat(20, 200px);;
14 } 14 }
15 15
16 .gridItem { 16 .gridItem {
17 height: 200px; 17 height: 200px;
18 width: 200px; 18 width: 200px;
19 } 19 }
20 </style> 20 </style>
21 <script src="../resources/runner.js"></script> 21 <script src="../resources/runner.js"></script>
22 <script> 22 <script>
23 function startTest() { 23 function startTest() {
(...skipping 2004 matching lines...) Expand 10 before | Expand all | Expand 10 after
2028 <div class='gridItem' style='grid-area: 100 / 14; background-color: rgb(239, 54, 215)'></div> 2028 <div class='gridItem' style='grid-area: 100 / 14; background-color: rgb(239, 54, 215)'></div>
2029 <div class='gridItem' style='grid-area: 100 / 15; background-color: rgb(86, 163, 33)'></div> 2029 <div class='gridItem' style='grid-area: 100 / 15; background-color: rgb(86, 163, 33)'></div>
2030 <div class='gridItem' style='grid-area: 100 / 16; background-color: rgb(154, 6, 174)'></div> 2030 <div class='gridItem' style='grid-area: 100 / 16; background-color: rgb(154, 6, 174)'></div>
2031 <div class='gridItem' style='grid-area: 100 / 17; background-color: rgb(191, 232 , 100)'></div> 2031 <div class='gridItem' style='grid-area: 100 / 17; background-color: rgb(191, 232 , 100)'></div>
2032 <div class='gridItem' style='grid-area: 100 / 18; background-color: rgb(127, 179 , 214)'></div> 2032 <div class='gridItem' style='grid-area: 100 / 18; background-color: rgb(127, 179 , 214)'></div>
2033 <div class='gridItem' style='grid-area: 100 / 19; background-color: rgb(45, 43, 72)'></div> 2033 <div class='gridItem' style='grid-area: 100 / 19; background-color: rgb(45, 43, 72)'></div>
2034 <div class='gridItem' style='grid-area: 100 / 20; background-color: rgb(178, 180 , 196)'></div> 2034 <div class='gridItem' style='grid-area: 100 / 20; background-color: rgb(178, 180 , 196)'></div>
2035 </body> 2035 </body>
2036 </head> 2036 </head>
2037 </html> 2037 </html>
OLDNEW
« no previous file with comments | « PerformanceTests/Layout/auto-grid-lots-of-data.html ('k') | Source/core/css/CSSComputedStyleDeclaration.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698