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

Side by Side Diff: LayoutTests/fast/table/hittest-tablecell-with-borders-right-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 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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698