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

Side by Side Diff: chrome/test/data/extensions/content_script_inject/script3.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 var gotDOMContentLoadedEvent = false;
6
7 // Test that at parse time, we have the document element.
8 var hasDocumentElement = (document.documentElement.tagName == "HTML");
9
10 // TODO(aa): We would like to add more tests here that there are zero child
11 // nodes to the documentElement, but unfortunately run_at:document_start is
12 // currently buggy and doesn't guarantee that.
13
14 window.addEventListener("DOMContentLoaded", function() {
15 gotDOMContentLoadedEvent = true;
16 }, false);
17
18 // Don't run tests until onload so that we can test that DOMContentLoaded and
19 // onload happen after this script runs.
20 window.addEventListener("load", runAllTests, false);
21
22 function testRunAtDocumentStart() {
23 assert(hasDocumentElement);
24 }
25
26 function testGotLoadEvents() {
27 assert(gotDOMContentLoadedEvent);
28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698