Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <p>There should be a blue square below. Inner table's percent-driven width | |
|
dgrogan
2016/04/28 01:04:31
This is just a little different than your example
mstensho (USE GERRIT)
2016/04/28 09:18:05
Even better, I think. Then we actually test the re
| |
| 3 should affect the shrink-to-fit div.</p> | |
| 4 <div style="float:left; background:blue;" data-expected-width=200 id="outerDiv"> | |
| 5 <table cellspacing="0" cellpadding="0"> | |
| 6 <td style="width:20%;"> | |
| 7 <div style="width:40px; height:200px;"></div> | |
| 8 </td> | |
| 9 <td></td> | |
| 10 </table> | |
| 11 </div> | |
| 12 <script src="../../resources/check-layout.js"></script> | |
| 13 <script> | |
| 14 checkLayout('#outerDiv'); | |
| 15 </script> | |
| OLD | NEW |