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

Side by Side Diff: LayoutTests/fast/scrolling/scrollbar-mousedown-mouseup.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 window.jsTestIsAsync = true; 6 window.jsTestIsAsync = true;
7 7
8 function initEventHandlers(element) { 8 function initEventHandlers(element) {
9 element.addEventListener('mousedown', handleEvent); 9 element.addEventListener('mousedown', handleEvent);
10 element.addEventListener('mouseup', handleEvent); 10 element.addEventListener('mouseup', handleEvent);
11 element.addEventListener('click', handleEvent); 11 element.addEventListener('click', handleEvent);
12 } 12 }
13 13
14 window.events = []; 14 window.events = [];
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 #scrollme p { 57 #scrollme p {
58 height: 1000px; 58 height: 1000px;
59 } 59 }
60 </style> 60 </style>
61 </head> 61 </head>
62 <body> 62 <body>
63 <div id="scrollme"><p>This is a scrollable div.</p></div> 63 <div id="scrollme"><p>This is a scrollable div.</p></div>
64 <pre id="console"></pre> 64 <pre id="console"></pre>
65 </body> 65 </body>
66 </html> 66 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698