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

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

Issue 2212873003: W3C auto test importer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/interfaces.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <title>Historical features</title> 5 <title>Historical features</title>
6 <script src="/resources/testharness.js"></script> 6 <script src="/resources/testharness.js"></script>
7 <script src="/resources/testharnessreport.js"></script> 7 <script src="/resources/testharnessreport.js"></script>
8 </head> 8 </head>
9 <body> 9 <body>
10 <div id="log"></div> 10 <div id="log"></div>
(...skipping 18 matching lines...) Expand all
29 assert_false(prefixes[i]+'Slice' in Blob.prototype, "'"+prefixes[i]+ "Slice in Blob.prototype"); 29 assert_false(prefixes[i]+'Slice' in Blob.prototype, "'"+prefixes[i]+ "Slice in Blob.prototype");
30 } 30 }
31 }, 'Blob should not support slice prefixed'); 31 }, 'Blob should not support slice prefixed');
32 32
33 test(function() { 33 test(function() {
34 var prefixes = ['', 'O', 'Moz', 'WebKit', 'MS']; 34 var prefixes = ['', 'O', 'Moz', 'WebKit', 'MS'];
35 for (var i = 0; i < prefixes.length; ++i) { 35 for (var i = 0; i < prefixes.length; ++i) {
36 assert_false(prefixes[i]+'BlobBuilder' in window, prefixes[i]+'BlobB uilder'); 36 assert_false(prefixes[i]+'BlobBuilder' in window, prefixes[i]+'BlobB uilder');
37 } 37 }
38 }, 'BlobBuilder should not be supported.'); 38 }, 'BlobBuilder should not be supported.');
39
40 test(function() {
41 var reader = new FileReader();
42 assert_false('readAsBinaryString' in reader, 'should not be in reader');
43 assert_equals(reader.readAsBinaryString, undefined,
44 'should be undefined on getting')
45 }, 'FileReader should not support readAsBinaryString');
46 </script> 39 </script>
47 </body> 40 </body>
48 </html> 41 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/interfaces.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698