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

Unified Diff: chrome_frame/test/data/privileged_apis_host.html

Issue 6756044: Remove extension automation support that was used only by CEEE. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to head. Created 9 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_frame/test/automation_client_mock.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/data/privileged_apis_host.html
diff --git a/chrome_frame/test/data/privileged_apis_host.html b/chrome_frame/test/data/privileged_apis_host.html
index fde39e184efe342369142b0d4fe4e8a8fc2155ed..052b2769ca713a7f924d93a741f56709a8837964 100644
--- a/chrome_frame/test/data/privileged_apis_host.html
+++ b/chrome_frame/test/data/privileged_apis_host.html
@@ -47,40 +47,8 @@
appendStatus('After postPrivateMessage')
}
- function tryInstallExtension() {
- var cf = GetChromeFrame();
-
- try {
- // Any message received by this listener is a failure.
- // This succeeds in FF, but throws an exception in IE.
- cf.installExtension('foo');
- onFailure(testName, 1, 'installExtension should throw');
- } catch(e) {
- appendStatus('installExtension threw exception')
- }
-
- appendStatus('After installExtension')
- }
-
- function tryLoadExtension() {
- var cf = GetChromeFrame();
-
- try {
- // Any message received by this listener is a failure.
- // This succeeds in FF, but throws an exception in IE.
- cf.loadExtension('foo');
- onFailure(testName, 1, 'loadExtension should throw');
- } catch(e) {
- appendStatus('loadExtension threw exception')
- }
-
- appendStatus('After loadExtension')
- }
-
function OnChromeFrameLoaded(url) {
tryPrivateMessage();
- tryInstallExtension();
- tryLoadExtension();
// The frame reflects this twice, first to a bogus target
// and again to the default target '*'. We succeed if we
« no previous file with comments | « chrome_frame/test/automation_client_mock.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698