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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/encoding/textdecoder-byte-order-marks.html

Issue 1990653002: Move the encoding directory from web-platform-tests/ to wpt/. (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 <title>Encoding API: Byte-order marks</title> 2 <title>Encoding API: Byte-order marks</title>
3 <script src="../../../resources/testharness.js"></script> 3 <script src="../../../resources/testharness.js"></script>
4 <script src="../../../resources/testharnessreport.js"></script> 4 <script src="../../../resources/testharnessreport.js"></script>
5 <script> 5 <script>
6 6
7 var testCases = [ 7 var testCases = [
8 { 8 {
9 encoding: 'utf-8', 9 encoding: 'utf-8',
10 bom: [0xEF, 0xBB, 0xBF], 10 bom: [0xEF, 0xBB, 0xBF],
(...skipping 28 matching lines...) Expand all
39 return; 39 return;
40 40
41 assert_not_equals(decoder.decode(new Uint8Array(o.bom.concat(t.bytes ))), string, 41 assert_not_equals(decoder.decode(new Uint8Array(o.bom.concat(t.bytes ))), string,
42 'Mismatching BOM should not be ignored - treated a s garbage bytes.'); 42 'Mismatching BOM should not be ignored - treated a s garbage bytes.');
43 }); 43 });
44 44
45 }, 'Byte-order marks: ' + t.encoding); 45 }, 'Byte-order marks: ' + t.encoding);
46 }); 46 });
47 47
48 </script> 48 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698