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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/slider-thumb-drag-release.html

Issue 2327223002: Move all remaining fast/repaint tests to paint/invalidation (Closed)
Patch Set: Created 4 years, 3 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
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script> 3 <script>
4 4
5 // Tests that the slider thumb is repainted correctly when the mouse that's 5 // Tests that the slider thumb is repainted correctly when the mouse that's
6 // dragging it releases outside of the track. The result should be a thumb 6 // dragging it releases outside of the track. The result should be a thumb
7 // painted in the released state. 7 // painted in the released state.
8 8
9 var ARBITRARY_DELTA = 50; 9 var ARBITRARY_DELTA = 50;
10 10
(...skipping 15 matching lines...) Expand all
26 { 26 {
27 clickAndDragDiagonally(document.getElementById('slider')); 27 clickAndDragDiagonally(document.getElementById('slider'));
28 } 28 }
29 29
30 </script> 30 </script>
31 </head> 31 </head>
32 <body onload="runTest()"> 32 <body onload="runTest()">
33 <input id="slider" type="range" value="0"> 33 <input id="slider" type="range" value="0">
34 </body> 34 </body>
35 </html> 35 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698