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

Unified Diff: chrome/test/data/extensions/api_test/extension_options/test.js

Issue 378783002: Initial implementation of the <extensionoptions> GuestView tag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Handle changing attribute values, prevent cross-extension options embedding Created 6 years, 5 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/extensions/api_test/extension_options/test.js
diff --git a/chrome/test/data/extensions/api_test/extension_options/test.js b/chrome/test/data/extensions/api_test/extension_options/test.js
new file mode 100644
index 0000000000000000000000000000000000000000..b681db5d355580192744ba313d1cdc477ba013d0
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/extension_options/test.js
@@ -0,0 +1,20 @@
+// Copyright (c) 2014 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 createExtensionOptionsGuest() {
+ chrome.runtime.onMessage.addListener(function(message,
+ sender,
+ sendResponse) {
+ chrome.test.assertTrue(Window.pass);
+ chrome.test.assertTrue("hi" == message);
Devlin 2014/07/15 18:07:36 prefer single-line quotes in js files.
ericzeng 2014/07/15 20:23:55 Done.
+ chrome.test.pass();
+ });
+
+ var extensionoptions = document.createElement('extensionoptions');
+ extensionoptions.setAttribute('extension', chrome.runtime.id);
+ document.body.appendChild(extensionoptions);
+ console.log("<extensionoptions> created in test.js")
+ }
+]);

Powered by Google App Engine
This is Rietveld 408576698