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

Unified Diff: chrome/test/webdriver/test/content_setting_test.html

Issue 10828135: Allow popups, mouselock, and https media-stream content by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 4 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/webdriver/test/chromedriver_tests.py ('k') | chrome/test/webdriver/test/empty.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/test/content_setting_test.html
diff --git a/chrome/test/webdriver/test/content_setting_test.html b/chrome/test/webdriver/test/content_setting_test.html
deleted file mode 100644
index aae4e6484dd73bae33db99f63eab1a1c429b1a94..0000000000000000000000000000000000000000
--- a/chrome/test/webdriver/test/content_setting_test.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<script>
-var g_callback = null;
-var g_geoDone = false;
-function waitForGeo(doneCallback) {
- if (g_geoDone) {
- doneCallback();
- } else {
- g_callback = doneCallback;
- }
-}
-
-function geoDone() {
- g_geoDone = true;
- if (g_callback)
- g_callback();
-}
-
-// Don't care whether geo succeeds or fails, just whether it gets past the
-// infobar.
-navigator.geolocation.getCurrentPosition(geoDone, geoDone);
-</script>
« no previous file with comments | « chrome/test/webdriver/test/chromedriver_tests.py ('k') | chrome/test/webdriver/test/empty.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698