Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(363)

Side by Side Diff: LayoutTests/fast/table/hittest-tablecell-with-borders-bottom-edge.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698