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

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

Issue 10091025: Convert the external extension ui_test to a browser_test. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 8 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
===================================================================
--- chrome/test/data/is_search_provider_installed.html (revision 132499)
+++ chrome/test/data/is_search_provider_installed.html (working copy)
@@ -30,14 +30,13 @@
function writeResult() {
var result = "1";
- if (passedAll)
+ if (passedAll) {
logPassed("Everything passed.");
- else {
+ document.title = "OK";
+ } else {
logFailed("At least one test failed.");
- result = " " + document.body.innerText; // Add a space to ensure that the
- // result doesn't resemble success.
+ document.title = "FAIL"
}
- document.cookie = document.location.hostname + "testResult=" + escape(result);
}
try {
« 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