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

Unified Diff: chrome/test/data/is_search_provider_installed.html

Issue 7115006: Added a check for the utf8 string input being empty (NULL). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix typo. Created 9 years, 6 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: chrome/test/data/is_search_provider_installed.html
diff --git a/chrome/test/data/is_search_provider_installed.html b/chrome/test/data/is_search_provider_installed.html
index 5e51c1793ede35d0971ea4b12e7d343c80eb02b5..85de2a9c16802fa9e3d06a45d8813d571c0d20f1 100644
--- a/chrome/test/data/is_search_provider_installed.html
+++ b/chrome/test/data/is_search_provider_installed.html
@@ -52,7 +52,7 @@ try {
var originWithDifferentPort = document.location.protocol + "//" +
document.location.hostname + differentPort + "/";
- // Verify existance of the api.
+ // Verify existence of the api.
var foundApi = false;
try {
if (window.external.IsSearchProviderInstalled)
@@ -83,7 +83,8 @@ try {
writeResult();
} catch (e) {
- logFailed("An exception occurred. Name: " + e.name + " Message: " + e.message);
+ logFailed("An exception occurred. Name: " + e.name + " Message: " +
+ e.message);
writeResult();
}
</script>
« no previous file with comments | « chrome/renderer/external_extension_uitest.cc ('k') | chrome/test/data/is_search_provider_installed_with_exception.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698