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

Unified Diff: chrome/test/data/extensions/platform_apps/ad_view/display_first_ad/chrome_test.js

Issue 12463015: Enable <adview> tag for packaged apps. (Closed) Base URL: https://git.chromium.org/chromium/src.git@master
Patch Set: Rebasing Created 7 years, 9 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/platform_apps/ad_view/display_first_ad/chrome_test.js
diff --git a/chrome/test/data/extensions/platform_apps/ad_view/display_first_ad/chrome_test.js b/chrome/test/data/extensions/platform_apps/ad_view/display_first_ad/chrome_test.js
new file mode 100644
index 0000000000000000000000000000000000000000..ba016eea77ff7063cd4ffd1e0ab3fb3d8c57c85a
--- /dev/null
+++ b/chrome/test/data/extensions/platform_apps/ad_view/display_first_ad/chrome_test.js
@@ -0,0 +1,25 @@
+// Copyright (c) 2013 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.getConfig(function(config) {
+ var guestURL = 'http://localhost:' + config.testServer.port +
+ '/files/extensions/platform_apps/ad_view/ad_network/test_sdk.html';
+ var adview = document.getElementsByTagName("ADVIEW")[0];
asargent_no_longer_on_chrome 2013/03/11 19:10:14 WHY ARE YOU SHOUTING? I.e. does ADVIEW really ne
rpaquay 2013/03/12 19:56:48 I don't need to use all-caps here. I needed to use
+
+ adview.addEventListener("loadcommit", function() {
+ adview.contentWindow.postMessage({
+ message: "display-first-ad",
+ publisher_data: "data"
+ }, "*");
+ })
+
+ window.addEventListener("message", function(event) {
+ if (event.data.message == "ad-displayed") {
+ console.log("ad-displayed: " + event.data.data.ad_size.height);
+ chrome.test.sendMessage("ad-displayed");
+ }
+ })
+
+ adview.setAttribute("src", guestURL);
+});

Powered by Google App Engine
This is Rietveld 408576698