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"); |