Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <link href="resources/grid.css" rel="stylesheet"> | |
| 5 <style> | |
| 6 .intrinsic { | |
| 7 grid-template-rows: max-content; | |
| 8 grid-template-columns: max-content; | |
| 9 height: 500px; | |
| 10 width: 500px; | |
| 11 } | |
| 12 | |
| 13 .percentage { | |
| 14 grid-template-rows: 100%; | |
| 15 grid-template-columns: 100%; | |
| 16 height: 100%; | |
| 17 width: 100%; | |
| 18 } | |
| 19 </style> | |
| 20 <script type="text/javascript"> | |
| 21 if (window.testRunner) | |
| 22 testRunner.dumpAsText(); | |
| 23 </script> | |
| 24 </head> | |
| 25 <body> | |
| 26 <p>This test checks that percentage track breadths of intrinsic size do not crash on debug.</p> | |
| 27 <div class="grid intrinsic"> | |
| 28 <div class="grid percentage"> | |
|
Julien - ping for review
2015/02/18 22:13:16
I assume we were also not resolving this correctly
Manuel Rego
2015/02/25 16:57:59
Yeah, I've changed to a check-layout test and real
| |
| 29 </div> | |
| 30 </div> | |
| 31 </body> | |
| 32 </html> | |
| OLD | NEW |