Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | |
|
Julien - ping for review
2014/04/25 15:50:34
Let's stick with an HTML5 doctype unless there are
| |
| 2 <html> | |
| 3 <head> | |
| 4 <script src="../../resources/check-layout.js"></script> | |
| 5 <link href="resources/grid.css" rel="stylesheet"> | |
| 6 <style> | |
| 7 | |
| 8 .maxRepetitionsTrackRepeat { | |
| 9 grid-template-rows: repeat(10005, 1px); | |
| 10 } | |
| 11 | |
| 12 </style> | |
| 13 </head> | |
| 14 <body onload="checkLayout('.grid')"> | |
| 15 | |
| 16 <div>Test the values greater than the maximum repetitions value are clamped thro ugh CSS.</div> | |
| 17 | |
| 18 <div> | |
|
Julien - ping for review
2014/04/25 15:50:34
No need for this div.
| |
| 19 <div class="grid maxRepetitionsTrackRepeat" data-expected-height="10000"></div > | |
|
Julien - ping for review
2014/04/25 15:50:34
We are doing boundary testing so it would be good
| |
| 20 </div> | |
| 21 | |
| 22 </body> | |
| 23 </html> | |
| OLD | NEW |