Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 </head> | |
| 5 <body> | |
| 6 <style> | |
| 7 table { | |
| 8 border-collapse: collapse; | |
| 9 border: 25px solid green; | |
| 10 border-top: 10px solid cyan; | |
| 11 position: absolute; | |
| 12 box-sizing: border-box; | |
| 13 outline: 5px solid blue; | |
| 14 } | |
| 15 div { | |
| 16 background-color: yellow; | |
| 17 height: 50px; | |
| 18 width: 50px; | |
| 19 } | |
| 20 </style> | |
| 21 <table> | |
| 22 <tbody> | |
| 23 <tr> | |
| 24 <td> | |
| 25 <div></div> | |
| 26 </td> | |
| 27 </tr> | |
| 28 </tbody> | |
| 29 </table> | |
| 30 <table style="top: 200px;"> | |
|
Julien - ping for review
2013/10/03 18:04:01
Can we use a checkLayout test instead of a ref-tes
| |
| 31 <tbody> | |
| 32 <tr> | |
| 33 <td> | |
| 34 <div></div> | |
| 35 </td> | |
| 36 </tr> | |
| 37 </tbody> | |
| 38 </table> | |
| 39 <table style="bottom: 100px;"> | |
|
Julien - ping for review
2013/10/03 18:04:01
You should also test CSS table as they have a diff
| |
| 40 <tbody> | |
| 41 <tr> | |
| 42 <td> | |
| 43 <div></div> | |
| 44 </td> | |
| 45 </tr> | |
| 46 </tbody> | |
| 47 </table> | |
| 48 </body> | |
| 49 </html> | |
| OLD | NEW |