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

Side by Side Diff: LayoutTests/fast/events/autoscroll-should-not-stop-on-keypress.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 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <script src="../js/resources/js-test-pre.js"></script> 5 <script src="../../resources/js-test.js"></script>
6 <script> 6 <script>
7 window.jsTestIsAsync = true; 7 window.jsTestIsAsync = true;
8 8
9 var frame; 9 var frame;
10 function test() { 10 function test() {
11 frame = document.getElementById('frame'); 11 frame = document.getElementById('frame');
12 var doc = frame.contentDocument.open(); 12 var doc = frame.contentDocument.open();
13 var htmlString = "Lots of text</br>Lots of text</br> \ 13 var htmlString = "Lots of text</br>Lots of text</br> \
14 Lots of text</br>Lots of text</br> \ 14 Lots of text</br>Lots of text</br> \
15 Lots of text</br>Lots of text</br> \ 15 Lots of text</br>Lots of text</br> \
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 } 88 }
89 89
90 successfullyParsed = true; 90 successfullyParsed = true;
91 </script> 91 </script>
92 </head> 92 </head>
93 <body onload="test()"> 93 <body onload="test()">
94 <iframe id="frame" style="height: 400px;" frameborder="0"></iframe> 94 <iframe id="frame" style="height: 400px;" frameborder="0"></iframe>
95 <div id="console"></div> 95 <div id="console"></div>
96 </body> 96 </body>
97 </html> 97 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698