- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / content_scripts / other_extensions / injector / inject.js
1 // Copyright (c) 2012 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 console.log('INJECTOR: Injecting content script!');
6
7 var content = document.getElementById('content');
8 if (content) {
9   content.innerText = 'Injected!!!';
10   console.log('INJECTOR: Changed content to: ' + content.innerText);
11 } else {
12   console.log('INJECTOR: Cannot find content!?');
13 }