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

Unified Diff: LayoutTests/fast/dom/Window/atob-btoa-expected.txt

Issue 99083002: WIP: Migrate generated bindings to new ExceptionState constructor. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase. Created 7 years 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/dom/Window/atob-btoa-expected.txt
diff --git a/LayoutTests/fast/dom/Window/atob-btoa-expected.txt b/LayoutTests/fast/dom/Window/atob-btoa-expected.txt
index e4cbe4de77925c2092ee6e39c32b08149b0b9e18..938fd1c3c973d0f8735eb8d306b43721b252c008 100644
--- a/LayoutTests/fast/dom/Window/atob-btoa-expected.txt
+++ b/LayoutTests/fast/dom/Window/atob-btoa-expected.txt
@@ -18,14 +18,14 @@ PASS window.btoa(undefined) is "dW5kZWZpbmVk"
PASS window.btoa(window) is "W29iamVjdCBXaW5kb3dd"
PASS window.btoa("éé") is "6ek="
PASS window.btoa("\u0080\u0081") is "gIE="
-PASS window.btoa("тест") threw exception InvalidCharacterError: 'btoa' failed: The string to be encoded contains characters outside of the Latin1 range..
+PASS window.btoa("тест") threw exception InvalidCharacterError: Failed to execute 'btoa' on 'Window': The string to be encoded contains characters outside of the Latin1 range..
PASS window.btoa is 0
PASS typeof window.btoa is "number"
PASS typeof window.atob is "function"
PASS window.atob() threw exception TypeError: Failed to execute 'atob' on 'Window': 1 argument required, but only 0 present..
PASS window.atob("") is ""
PASS window.atob(null) is "žée"
-PASS window.atob(undefined) threw exception InvalidCharacterError: 'atob' failed: The string to be decoded is not correctly encoded..
+PASS window.atob(undefined) threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
PASS window.atob(" YQ==") is "a"
PASS window.atob("YQ== ") is "a"
PASS window.atob("YQ== ") is "a"
@@ -39,23 +39,23 @@ PASS window.atob("YQ\t\n\f\r ==") is "a"
PASS window.atob("6ek=") is "éé"
PASS window.atob("6ek") is "éé"
PASS window.atob("gIE=") is "€"
-PASS window.atob("тест") threw exception InvalidCharacterError: 'atob' failed: The string to be decoded contains characters outside of the Latin1 range..
-PASS window.atob("z") threw exception InvalidCharacterError: 'atob' failed: The string to be decoded is not correctly encoded..
+PASS window.atob("тест") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded contains characters outside of the Latin1 range..
+PASS window.atob("z") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
PASS window.atob("zz") is "Ï"
PASS window.atob("zzz") is "Ï<"
PASS window.atob("zzz=") is "Ï<"
-PASS window.atob("zzz==") threw exception InvalidCharacterError: 'atob' failed: The string to be decoded is not correctly encoded..
-PASS window.atob("zzz===") threw exception InvalidCharacterError: 'atob' failed: The string to be decoded is not correctly encoded..
-PASS window.atob("zzz====") threw exception InvalidCharacterError: 'atob' failed: The string to be decoded is not correctly encoded..
-PASS window.atob("zzz=====") threw exception InvalidCharacterError: 'atob' failed: The string to be decoded is not correctly encoded..
+PASS window.atob("zzz==") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
+PASS window.atob("zzz===") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
+PASS window.atob("zzz====") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
+PASS window.atob("zzz=====") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
PASS window.atob("zzzz") is "Ï<ó"
-PASS window.atob("zzzzz") threw exception InvalidCharacterError: 'atob' failed: The string to be decoded is not correctly encoded..
-PASS window.atob("z=zz") threw exception InvalidCharacterError: 'atob' failed: The string to be decoded is not correctly encoded..
-PASS window.atob("=") threw exception InvalidCharacterError: 'atob' failed: The string to be decoded is not correctly encoded..
-PASS window.atob("==") threw exception InvalidCharacterError: 'atob' failed: The string to be decoded is not correctly encoded..
-PASS window.atob("===") threw exception InvalidCharacterError: 'atob' failed: The string to be decoded is not correctly encoded..
-PASS window.atob("====") threw exception InvalidCharacterError: 'atob' failed: The string to be decoded is not correctly encoded..
-PASS window.atob("=====") threw exception InvalidCharacterError: 'atob' failed: The string to be decoded is not correctly encoded..
+PASS window.atob("zzzzz") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
+PASS window.atob("z=zz") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
+PASS window.atob("=") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
+PASS window.atob("==") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
+PASS window.atob("===") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
+PASS window.atob("====") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
+PASS window.atob("=====") threw exception InvalidCharacterError: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded..
PASS window.atob is 0
PASS typeof window.atob is "number"
PASS successfullyParsed is true

Powered by Google App Engine
This is Rietveld 408576698