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

Unified Diff: ios/testing/data/http_server_files/window_location.js

Issue 2577333002: Created file-based test pages for window.location tests. (Closed)
Patch Set: added functions Created 4 years 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 | « ios/testing/data/http_server_files/window_location.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/testing/data/http_server_files/window_location.js
diff --git a/ios/testing/data/http_server_files/window_location.js b/ios/testing/data/http_server_files/window_location.js
new file mode 100644
index 0000000000000000000000000000000000000000..7e1bc1975973957141deecf8576472d8808cbdba
--- /dev/null
+++ b/ios/testing/data/http_server_files/window_location.js
@@ -0,0 +1,49 @@
+// Copyright 2016 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.
+
+// Adds event listeners and populates on-load-div.
+window.onload = function() {
+ updateOnLoadText('OnLoadText');
+};
+
+var updateOnLoadText = function(text) {
+ document.getElementById('on-load-div').innerHTML = text;
+}
+
+var isOnLoadTextVisible = function() {
+ return document.getElementById('on-load-div').innerHTML == 'OnLoadText';
+}
+
+// Updates the url-to-load div with |text|. This value is later used by the
+// window.location calls below.
+var updateUrlToLoadText = function(text) {
+ document.getElementById('url-to-load').innerHTML = text;
+}
+
+// Returns a DOMString representing the URL used as the innerHTML of the
+// url-to-load div.
+var getUrl = function() {
+ return document.getElementById('url-to-load').innerHTML;
+}
+
+var locationAssign = function() {
+ updateOnLoadText('');
+ window.location.assign(getUrl());
+}
+
+var locationReplace = function() {
+ updateOnLoadText('');
+ window.location.replace(getUrl());
+}
+
+var locationReload = function() {
+ updateOnLoadText('');
+ window.location.reload();
+}
+
+var setLocationToDOMString = function() {
+ updateOnLoadText('');
+ window.location = getUrl();
+}
+
« no previous file with comments | « ios/testing/data/http_server_files/window_location.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698