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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/FileAPI/fileReader.html

Issue 1984023002: Move web-platform-tests to wpt (part 1 of 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>FileReader States</title> 4 <title>FileReader States</title>
5 <link rel=help href="http://dev.w3.org/2006/webapi/FileAPI/#dfn-filereader "> 5 <link rel=help href="http://dev.w3.org/2006/webapi/FileAPI/#dfn-filereader ">
6 <link rel=author title="Lenient" href="mailto:lenient315@gmail.com"> 6 <link rel=author title="Lenient" href="mailto:lenient315@gmail.com">
7 <script src="../../../resources/testharness.js"></script> 7 <script src="../../../resources/testharness.js"></script>
8 <script src="../../../resources/testharnessreport.js"></script> 8 <script src="../../../resources/testharnessreport.js"></script>
9 </head> 9 </head>
10 <body> 10 <body>
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 58
59 fileReader.onloadend = this.step_func(function(e) { 59 fileReader.onloadend = this.step_func(function(e) {
60 assert_equals(fileReader.readyState, 2); 60 assert_equals(fileReader.readyState, 2);
61 assert_equals(fileReader.readyState, FileReader.DONE); 61 assert_equals(fileReader.readyState, FileReader.DONE);
62 t_event.done(); 62 t_event.done();
63 }); 63 });
64 }); 64 });
65 </script> 65 </script>
66 </body> 66 </body>
67 </html> 67 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698