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

Side by Side Diff: LayoutTests/fast/encoding/api/basics.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 <script src="../../js/resources/js-test-pre.js"></script> 2 <script src="../../../resources/js-test.js"></script>
3 <script> 3 <script>
4 4
5 description("This tests the basics of the Encoding API."); 5 description("This tests the basics of the Encoding API.");
6 6
7 shouldBeTrue("'TextEncoder' in window"); 7 shouldBeTrue("'TextEncoder' in window");
8 shouldBeTrue("'TextDecoder' in window"); 8 shouldBeTrue("'TextDecoder' in window");
9 9
10 shouldBeTrue("'encoding' in new TextEncoder"); 10 shouldBeTrue("'encoding' in new TextEncoder");
11 shouldBeTrue("'encoding' in new TextDecoder"); 11 shouldBeTrue("'encoding' in new TextDecoder");
12 12
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 "z\xA2\u6C34\uD834\uDD1E\uDBFF\uDFFD", // z, cent, CJK water, G-Clef, Privat e-use character 51 "z\xA2\u6C34\uD834\uDD1E\uDBFF\uDFFD", // z, cent, CJK water, G-Clef, Privat e-use character
52 [0x00, 0x7A, 0x00, 0xA2, 0x6C, 0x34, 0xD8, 0x34, 0xDD, 0x1E, 0xDB, 0xFF, 0xD F, 0xFD] 52 [0x00, 0x7A, 0x00, 0xA2, 0x6C, 0x34, 0xD8, 0x34, 0xDD, 0x1E, 0xDB, 0xFF, 0xD F, 0xFD]
53 ); 53 );
54 testEncodeDecodeSample( 54 testEncodeDecodeSample(
55 "utf-16", 55 "utf-16",
56 "z\xA2\u6C34\uD834\uDD1E\uDBFF\uDFFD", // z, cent, CJK water, G-Clef, Privat e-use character 56 "z\xA2\u6C34\uD834\uDD1E\uDBFF\uDFFD", // z, cent, CJK water, G-Clef, Privat e-use character
57 [0x7A, 0x00, 0xA2, 0x00, 0x34, 0x6C, 0x34, 0xD8, 0x1E, 0xDD, 0xFF, 0xDB, 0xF D, 0xDF] 57 [0x7A, 0x00, 0xA2, 0x00, 0x34, 0x6C, 0x34, 0xD8, 0x1E, 0xDD, 0xFF, 0xDB, 0xF D, 0xDF]
58 ); 58 );
59 59
60 </script> 60 </script>
OLDNEW
« no previous file with comments | « LayoutTests/fast/encoding/api/ascii-supersets.html ('k') | LayoutTests/fast/encoding/api/byte-order-marks.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698