| 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 right edge of a table cell (with borders) returns the proper unde
rlying 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 right edge of a table cell (with borders) returns the proper unde
rlying 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 <td id="tr4-td1">1</td> | 145 <td id="tr4-td1">1</td> |
| 146 <td id="tr4-td2">1</td> | 146 <td id="tr4-td2">1</td> |
| 147 <td id="tr4-td3"></td> | 147 <td id="tr4-td3"></td> |
| 148 <td id="tr4-td4">1</td> | 148 <td id="tr4-td4">1</td> |
| 149 </tr> | 149 </tr> |
| 150 </table> | 150 </table> |
| 151 <p id="description"></p> | 151 <p id="description"></p> |
| 152 <div id="console"></div> | 152 <div id="console"></div> |
| 153 </body> | 153 </body> |
| 154 </html> | 154 </html> |
| OLD | NEW |