OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../js/resources/js-test-pre.js"></script> | 4 <script src="../../resources/js-test.js"></script> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <h3>Test for chromium bug : <a href="https://code.google.com/p/chromium/issues/d
etail?id=29502">29502</a>. border-spacing is doubled between table-row-groups.</
h3> | 7 <h3>Test for chromium bug : <a href="https://code.google.com/p/chromium/issues/d
etail?id=29502">29502</a>. border-spacing is doubled between table-row-groups.</
h3> |
8 <h4>Border-spacing was adding twice, One for bottom of first section and another
for top of second section. But bottom of first section and top of second sectio
n border spacing should be common.</h4> | 8 <h4>Border-spacing was adding twice, One for bottom of first section and another
for top of second section. But bottom of first section and top of second sectio
n border spacing should be common.</h4> |
9 Distance between all rows in the table should be same. | 9 Distance between all rows in the table should be same. |
10 <br/><br/> | 10 <br/><br/> |
11 | 11 |
12 <div id="divId"> | 12 <div id="divId"> |
13 <table border="5" style="border-spacing:10px"> | 13 <table border="5" style="border-spacing:10px"> |
14 <thead> | 14 <thead> |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 } | 58 } |
59 | 59 |
60 for (var i = 1; i < 6; i++) { | 60 for (var i = 1; i < 6; i++) { |
61 document.getElementById('console').appendChild(document.createElement('b
r')); | 61 document.getElementById('console').appendChild(document.createElement('b
r')); |
62 testBorderSpacing(i); | 62 testBorderSpacing(i); |
63 } | 63 } |
64 </script> | 64 </script> |
65 | 65 |
66 </body> | 66 </body> |
67 </html> | 67 </html> |
OLD | NEW |