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

Unified Diff: chrome/test/data/is_search_provider_installed_with_exception.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
« no previous file with comments | « chrome/test/data/is_search_provider_installed.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/is_search_provider_installed_with_exception.html
===================================================================
--- chrome/test/data/is_search_provider_installed_with_exception.html (revision 132499)
+++ chrome/test/data/is_search_provider_installed_with_exception.html (working copy)
@@ -20,15 +20,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);
}
function MyObject() {
« no previous file with comments | « chrome/test/data/is_search_provider_installed.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698