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

Unified Diff: third_party/webdriver/test_data/Page.aspx.cs

Issue 424363004: Update third_party/webdriver/pylib to r18456 and delete test_data (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: "python" -> "pylib" Created 6 years, 5 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 | « third_party/webdriver/test_data/Page.aspx ('k') | third_party/webdriver/test_data/Redirect.aspx » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/webdriver/test_data/Page.aspx.cs
diff --git a/third_party/webdriver/test_data/Page.aspx.cs b/third_party/webdriver/test_data/Page.aspx.cs
deleted file mode 100644
index c2a5e9aed8f9551ff23b8b1a25489f96d91b95bc..0000000000000000000000000000000000000000
--- a/third_party/webdriver/test_data/Page.aspx.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-using System;
-using System.Threading;
-
-public partial class Page : System.Web.UI.Page
-{
- protected void Page_Load(object sender, EventArgs e)
- {
- Response.ContentType = "text/html";
-
- int lastIndex = Request.PathInfo.LastIndexOf("/");
- string pageNumber = (lastIndex == -1 ? "Unknown" : Request.PathInfo.Substring(lastIndex + 1));
- if (!string.IsNullOrEmpty(Request.QueryString["pageNumber"]))
- {
- pageNumber = Request.QueryString["pageNumber"];
- }
- Response.Output.Write("<html><head><title>Page" + pageNumber + "</title></head>");
- Response.Output.Write("<body>Page number <span id=\"pageNumber\">");
- Response.Output.Write(pageNumber);
- //Response.Output.Write("<script>var s=''; for (var i in window) {s += i + ' -> ' + window[i] + '<p>';} document.write(s);</script>")'
- Response.Output.Write("</span></body></html>");
- }
-}
« no previous file with comments | « third_party/webdriver/test_data/Page.aspx ('k') | third_party/webdriver/test_data/Redirect.aspx » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698