Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <link href="resources/grid.css" rel="stylesheet"> | |
| 4 <style> | |
| 5 .grid { | |
| 6 grid-template-columns: 200px 200px; | |
| 7 grid-template-rows: 200px 200px; | |
|
Julien - ping for review
2014/09/05 17:32:13
I would change the grid cells' sizes to have more
Sunil Ratnu
2014/09/06 12:36:10
Done.
| |
| 8 } | |
| 9 | |
| 10 .gridItemScrollOverflow { | |
| 11 width: 50px; | |
| 12 height: 50px; | |
| 13 overflow: scroll; | |
| 14 } | |
| 15 | |
| 16 </style> | |
| 17 <script src="../../resources/check-layout.js"></script> | |
| 18 <body onload="checkLayout('.grid')"> | |
| 19 | |
| 20 <p>This test checks that scrollbar width should not be added to the width of fix ed-width grid items.</p> | |
| 21 | |
| 22 <div class="grid"> | |
| 23 <div class="firstRowFirstColumn gridItemScrollOverflow" data-expected-width= "50" data-expected-height="50"></div> | |
| 24 <div class="firstRowSecondColumn gridItemScrollOverflow" data-expected-width ="50" data-expected-height="50"></div> | |
| 25 <div class="secondRowFirstColumn gridItemScrollOverflow" data-expected-width ="50" data-expected-height="50"></div> | |
| 26 <div class="secondRowSecondColumn gridItemScrollOverflow" data-expected-widt h="50" data-expected-height="50"></div> | |
|
Julien - ping for review
2014/09/05 17:32:13
We will want one of the grid items to be also a gr
Julien - ping for review
2014/09/05 17:32:13
We will want one of the grid items to be also a gr
Sunil Ratnu
2014/09/06 12:36:10
Done.
| |
| 27 </div> | |
| 28 | |
| 29 </body> | |
| 30 </html> | |
| OLD | NEW |