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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/content_script_inject/script3.js
diff --git a/chrome/test/data/extensions/content_script_inject/script3.js b/chrome/test/data/extensions/content_script_inject/script3.js
new file mode 100644
index 0000000000000000000000000000000000000000..9253dc9086b4e083c58d1b26539fca5382d66e1f
--- /dev/null
+++ b/chrome/test/data/extensions/content_script_inject/script3.js
@@ -0,0 +1,28 @@
+// Copyright (c) 2009 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.
+
+var gotDOMContentLoadedEvent = false;
+
+// Test that at parse time, we have the document element.
+var hasDocumentElement = (document.documentElement.tagName == "HTML");
+
+// TODO(aa): We would like to add more tests here that there are zero child
+// nodes to the documentElement, but unfortunately run_at:document_start is
+// currently buggy and doesn't guarantee that.
+
+window.addEventListener("DOMContentLoaded", function() {
+ gotDOMContentLoadedEvent = true;
+}, false);
+
+// Don't run tests until onload so that we can test that DOMContentLoaded and
+// onload happen after this script runs.
+window.addEventListener("load", runAllTests, false);
+
+function testRunAtDocumentStart() {
+ assert(hasDocumentElement);
+}
+
+function testGotLoadEvents() {
+ assert(gotDOMContentLoadedEvent);
+}

Powered by Google App Engine
This is Rietveld 408576698