| 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 <script> | 5 <script> |
| 6 function test() | 6 function test() |
| 7 { | 7 { |
| 8 description("An event generated on the edge of a table cell is not being con
sumed by the appropriate underlying element. This test verifies that the hittest
result on the bottom edge of a table cell (with borders) returns the proper und
erlying element."); | 8 description("An event generated on the edge of a table cell is not being con
sumed by the appropriate underlying element. This test verifies that the hittest
result on the bottom edge of a table cell (with borders) returns the proper und
erlying element."); |
| 9 | 9 |
| 10 var ele = {}; | 10 var ele = {}; |
| 11 ['tr1-td1', 'tr1-td2', 'tr1-td3', 'tr1-td4', | 11 ['tr1-td1', 'tr1-td2', 'tr1-td3', 'tr1-td4', |
| 12 'tr2-td1', 'tr2-td2', 'tr2-td3', 'tr2-td4', | 12 'tr2-td1', 'tr2-td2', 'tr2-td3', 'tr2-td4', |
| 13 'tr3-td1', 'tr3-td2', 'tr3-td3', 'tr3-td4', | 13 'tr3-td1', 'tr3-td2', 'tr3-td3', 'tr3-td4', |
| 14 'tr4-td1', 'tr4-td2', 'tr4-td3', 'tr4-td4'].forEach(function(a) { | 14 'tr4-td1', 'tr4-td2', 'tr4-td3', 'tr4-td4'].forEach(function(a) { |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 <td id="tr4-td1">1</td> | 133 <td id="tr4-td1">1</td> |
| 134 <td id="tr4-td2">1</td> | 134 <td id="tr4-td2">1</td> |
| 135 <td id="tr4-td3"></td> | 135 <td id="tr4-td3"></td> |
| 136 <td id="tr4-td4">1</td> | 136 <td id="tr4-td4">1</td> |
| 137 </tr> | 137 </tr> |
| 138 </table> | 138 </table> |
| 139 <p id="description"></p> | 139 <p id="description"></p> |
| 140 <div id="console"></div> | 140 <div id="console"></div> |
| 141 </body> | 141 </body> |
| 142 </html> | 142 </html> |
| OLD | NEW |