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

Side by Side Diff: LayoutTests/fast/table/border-collapsing/cached-69296.html

Issue 15373002: Try to reduce the flakiness of 4 :hover tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Switched to the first option Created 7 years, 7 months 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
« no previous file with comments | « LayoutTests/fast/layers/no-clipping-overflow-hidden-hardware-acceleration.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 Test for bug69296. 2 Test for bug69296.
3 Collapsed borders should not disappear. 3 Collapsed borders should not disappear.
4 --> 4 -->
5 <html> 5 <html>
6 <head> 6 <head>
7 <style> 7 <style>
8 BODY { 8 BODY {
9 margin: 20px; 9 margin: 20px;
10 } 10 }
(...skipping 17 matching lines...) Expand all
28 if (window.testRunner) { 28 if (window.testRunner) {
29 testRunner.display(); 29 testRunner.display();
30 } 30 }
31 if (window.eventSender) { 31 if (window.eventSender) {
32 row = document.getElementById('row1'); 32 row = document.getElementById('row1');
33 rowRect = row.getBoundingClientRect(); 33 rowRect = row.getBoundingClientRect();
34 x = rowRect.left + 75; 34 x = rowRect.left + 75;
35 y = rowRect.top; 35 y = rowRect.top;
36 eventSender.mouseMoveTo(x, y + 1); 36 eventSender.mouseMoveTo(x, y + 1);
37 eventSender.mouseMoveTo(x, y - 1); 37 eventSender.mouseMoveTo(x, y - 1);
38 document.body.offsetTop;
38 } 39 }
39 } 40 }
40 </script> 41 </script>
41 </head> 42 </head>
42 <body onload="test()"> 43 <body onload="test()">
43 <table> 44 <table>
44 <tr id="row1"> 45 <tr id="row1">
45 <td valign="top"/> 46 <td valign="top"/>
46 <td/> 47 <td/>
47 <td> 48 <td>
48 <div> 49 <div>
49 <div style="width: 20px; height: 20px; background: lime; "/> 50 <div style="width: 20px; height: 20px; background: lime; "/>
50 </div> 51 </div>
51 </td> 52 </td>
52 </tr> 53 </tr>
53 <tr id="row2"> 54 <tr id="row2">
54 <td/> 55 <td/>
55 <td/> 56 <td/>
56 <td/> 57 <td/>
57 </tr> 58 </tr>
58 </table> 59 </table>
59 </body> 60 </body>
60 </html> 61 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/layers/no-clipping-overflow-hidden-hardware-acceleration.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698