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

Unified Diff: content/test/data/dom_storage/sanity_check.js

Issue 382153006: Fix 'except' and 'prefer' spelling. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Drop change to braille_table.js because it fails CQ. Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: content/test/data/dom_storage/sanity_check.js
diff --git a/content/test/data/dom_storage/sanity_check.js b/content/test/data/dom_storage/sanity_check.js
index 94678f6934e96c8698b1c645cf827bbeef743d9a..cbfb4a9a7119e95643c95f66cd1b14e52e750b83 100644
--- a/content/test/data/dom_storage/sanity_check.js
+++ b/content/test/data/dom_storage/sanity_check.js
@@ -60,14 +60,14 @@ function sanityCheck(storage) {
var tooLarge = makeLargeString((5 * 1024 * 1024) + 1);
try {
storage.setItem("tooLarge", tooLarge);
- throw "failed to throw execption for very large value";
+ throw "failed to throw exception for very large value";
} catch(ex) {
checkEqual(ex.code, 22,
"ex.code != 22 for attempt to store a very large value");
}
try {
storage.setItem(tooLarge, "key is too large");
- throw "failed to throw execption for very large key";
+ throw "failed to throw exception for very large key";
} catch(ex) {
checkEqual(ex.code, 22,
"ex.code != 22 for attempt to store a very large key");
« no previous file with comments | « content/browser/appcache/appcache_storage_impl_unittest.cc ('k') | media/video/capture/linux/video_capture_device_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698