Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / Window / atob-btoa-expected.txt
blobbbeb0a75795d2480b55ccc9a449f81097d460c01
1 PASS window.atob("YQ==") is "a"
2 PASS window.atob("YWI=") is "ab"
3 PASS window.atob("YWJj") is "abc"
4 PASS window.atob("YWJjZA==") is "abcd"
5 PASS window.atob("YWJjZGU=") is "abcde"
6 PASS window.atob("YWJjZGVm") is "abcdef"
7 PASS window.btoa("a") is "YQ=="
8 PASS window.btoa("ab") is "YWI="
9 PASS window.btoa("abc") is "YWJj"
10 PASS window.btoa("abcd") is "YWJjZA=="
11 PASS window.btoa("abcde") is "YWJjZGU="
12 PASS window.btoa("abcdef") is "YWJjZGVm"
13 PASS typeof window.btoa is "function"
14 PASS window.btoa() threw exception TypeError: Failed to execute 'btoa' on 'Window': 1 argument required, but only 0 present..
15 PASS window.btoa("") is ""
16 PASS window.btoa(null) is "bnVsbA=="
17 PASS window.btoa(undefined) is "dW5kZWZpbmVk"
18 PASS window.btoa(window) is "W29iamVjdCBXaW5kb3dd"
19 PASS window.btoa("éé") is "6ek="
20 PASS window.btoa("\u0080\u0081") is "gIE="
21 PASS window.btoa("тест") threw exception InvalidCharacterError: Failed to execute 'btoa' on 'Window': The string to be encoded contains characters outside of the Latin1 range..
22 PASS window.btoa is 0
23 PASS typeof window.btoa is "number"
24 PASS typeof window.atob is "function"
25 PASS window.atob() threw exception TypeError: Failed to execute 'atob' on 'Window': 1 argument required, but only 0 present..
26 PASS window.atob("") is ""
27 PASS window.atob(null) is "žée"
28 PASS window.atob(undefined) threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
29 PASS window.atob(" YQ==") is "a"
30 PASS window.atob("YQ== ") is "a"
31 PASS window.atob("YQ==    ") is "a"
32 PASS window.atob("YQ==\u000a") is "a"
33 PASS window.atob("YQ ==") is "a"
34 PASS window.atob("YQ\t==") is "a"
35 PASS window.atob("YQ\n==") is "a"
36 PASS window.atob("YQ\f==") is "a"
37 PASS window.atob("YQ\r==") is "a"
38 PASS window.atob("YQ\t\n\f\r ==") is "a"
39 PASS window.atob("6ek=") is "éé"
40 PASS window.atob("6ek") is "éé"
41 PASS window.atob("gIE=") is "€"
42 PASS window.atob("тест") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded contains characters outside of the Latin1 range..
43 PASS window.atob("z") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
44 PASS window.atob("zz") is "Ï"
45 PASS window.atob("zzz") is "Ï<"
46 PASS window.atob("zzz=") is "Ï<"
47 PASS window.atob("zzz==") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
48 PASS window.atob("zzz===") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
49 PASS window.atob("zzz====") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
50 PASS window.atob("zzz=====") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
51 PASS window.atob("zzzz") is "Ï<ó"
52 PASS atob("            ") is ""
53 PASS window.atob("zzzzz") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
54 PASS window.atob("z=zz") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
55 PASS window.atob("=") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
56 PASS window.atob("==") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
57 PASS window.atob("===") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
58 PASS window.atob("====") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
59 PASS window.atob("=====") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
60 PASS window.atob is 0
61 PASS typeof window.atob is "number"
62 PASS successfullyParsed is true
64 TEST COMPLETE