Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <style> | |
| 5 table { | |
| 6 border: 1px solid blue; | |
| 7 width: 200px; | |
| 8 height: 100px; | |
| 9 } | |
| 10 </style> | |
| 11 </head> | |
| 12 <body> | |
| 13 <table> | |
| 14 <tr> | |
| 15 <td width="50%" style=" border: 1px solid red;background-color: yellow;"><p></p></td> | |
| 16 <td width="50%" style=" border: none"></td> | |
| 17 </tr> | |
| 18 </table> | |
| 19 </br> | |
| 20 <table> | |
| 21 <tr> | |
| 22 <td width="50%" style=" border: 1px solid red;background-color: yellow;"><p></p></td> | |
| 23 <td width="50%" style=" border: none"></td> | |
| 24 </tr> | |
| 25 </table> | |
| 26 </body> | |
| 27 </html> | |
| OLD | NEW |