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

Unified Diff: chrome/test/data/extensions/api_test/content_scripts/other_extensions/victim/test.js

Issue 10863002: Added check to prevent extensions from injecting scrips into other extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: added license comments Created 8 years, 4 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/extensions/api_test/content_scripts/other_extensions/victim/test.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/extensions/api_test/content_scripts/other_extensions/victim/test.js
diff --git a/chrome/test/data/extensions/api_test/content_scripts/other_extensions/victim/test.js b/chrome/test/data/extensions/api_test/content_scripts/other_extensions/victim/test.js
new file mode 100644
index 0000000000000000000000000000000000000000..c3b8e305e8530e87ac6932a027df701f8411533e
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/content_scripts/other_extensions/victim/test.js
@@ -0,0 +1,29 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+chrome.test.runTests([
+ function content_test() {
+ window.addEventListener('message', function(event) {
+ var msg = event.data;
+ if (msg == 'original') {
+ console.log('VICTIM: No content changed.');
+ chrome.test.succeed();
+ } else {
+ console.log('VICTIM: Detected injected content - ' + msg);
+ chrome.test.fail('Content changed: ' + msg);
+ }
+ },
+ false);
+
+ chrome.test.getConfig(function(config) {
+ chrome.test.log("Creating tab...");
+ var test_url = ("http://a.com:PORT/files/extensions/api_test" +
+ "/content_scripts/other_extensions/iframe_content.html#" +
+ escape(chrome.extension.getURL("test.html")))
+ .replace(/PORT/, config.testServer.port);
+ console.log('Opening frame: ' + test_url);
+ document.getElementById('content_frame').src = test_url;
+ });
+ }
+]);
« no previous file with comments | « chrome/test/data/extensions/api_test/content_scripts/other_extensions/victim/test.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698