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

Side by Side Diff: chrome/test/data/extensions/content_script_inject/script1b.js

Issue 60112: Implement chromium.self in content scripts, fix bugs (Closed)
Patch Set: fixedy fixedy Created 11 years, 8 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) 2009 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 // This tests that we are running in the same global context as script1a.js.
6 function testScriptFilesRunInSameContext() {
7 assert(script1_var === 1);
8 }
9
10 // This tests that our relationship to content is working correctly.
11 // a) We should not see content globals in our global scope.
12 // b) We should have a contentWindow object that looks like a DOM Window.
13 // c) We should be able to access content globals via contentWindow.
14 function testContentInteraction() {
15 assert(typeof content_var == "undefined");
16 assert(typeof contentWindow != "undefined");
17 assert(contentWindow.location.href.match(/content_script_inject_page.html$/));
18 assert(contentWindow.content_var == "hello");
19 }
20
21 // Test that our css in script1.css was injected successfully.
22 function testCSSWasInjected() {
23 assert(document.defaultView.getComputedStyle(
24 document.body, null)["background-color"] == "rgb(255, 0, 0)");
25 }
26
27 runAllTests();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698