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

Unified Diff: chrome/test/data/extensions/api_test/page_action_popup/popup.html

Issue 339091: API test for CL http://codereview.chromium.org/347016 (Closed)
Patch Set: Created 11 years, 2 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
« no previous file with comments | « chrome/test/data/extensions/api_test/page_action_popup/manifest.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/page_action_popup/popup.html
diff --git a/chrome/test/data/extensions/api_test/page_action_popup/popup.html b/chrome/test/data/extensions/api_test/page_action_popup/popup.html
new file mode 100755
index 0000000000000000000000000000000000000000..7dbe750f1ca490827dba9aaf26523b8a30970be2
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/page_action_popup/popup.html
@@ -0,0 +1,14 @@
+<head>
+<script>
+// Wait to be resized by the browser once before indicating pass.
+function onResize() {
+ window.removeEventListener("resize", onResize);
+ chrome.test.notifyPass();
+}
+
+window.addEventListener("resize", onResize);
+</script>
+</head>
+<body>
+<div id="test">Hello&nbsp;World</div>
+</body>
« no previous file with comments | « chrome/test/data/extensions/api_test/page_action_popup/manifest.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698