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

Side by Side Diff: chrome/test/data/extensions/platform_apps/ad_view/ad_network_loaded/chrometest.js

Issue 12463015: Enable <adview> tag for packaged apps. (Closed) Base URL: https://git.chromium.org/chromium/src.git@master
Patch Set: Merge fix. 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 chrome.test.getConfig(function(config) {
6 var guestURL = 'http://localhost:' + config.testServer.port +
7 '/files/extensions/platform_apps/ad_view/ad_network/testsdk.html';
8
9 var adview = document.getElementsByTagName("adview")[0];
10
11 adview.addEventListener("loadcommit", function() {
12 adview.contentWindow.postMessage({
13 message: "onloadcommit",
14 data: "data"
15 }, "*");
16 })
17
18 adview.setAttribute("src", guestURL);
19
20 window.addEventListener("message", function(event) {
21 if (event.data.message == "onloadcommit-ack") {
22 chrome.test.sendMessage("ad-network-loaded");
23 }
24 })
25 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698