Index: content/test/data/simple_links.html |
diff --git a/content/test/data/simple_links.html b/content/test/data/simple_links.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e5206796c18df919716a7dd710559cfc0d052011 |
--- /dev/null |
+++ b/content/test/data/simple_links.html |
@@ -0,0 +1,33 @@ |
+<html> |
+ |
+ <head><title>Simple links</title> |
+ <script> |
+ function simulateClick(target) { |
+ var evt = document.createEvent("MouseEvents"); |
+ evt.initMouseEvent("click", true, true, window, |
+ 0, 0, 0, 0, 0, false, false, |
+ false, false, 0, null); |
+ |
+ return target.dispatchEvent(evt); |
+ } |
+ |
+ function setPortNumber(portNumber) { |
+ var link = document.getElementById("cross_site_link"); |
+ link.setAttribute("href", "http://foo.com:" + portNumber + "/title2.html"); |
+ return true; |
+ } |
+ |
+ function clickSameSiteLink() { |
+ return simulateClick(document.getElementById("same_site_link")); |
+ } |
+ |
+ function clickCrossSiteLink() { |
+ return simulateClick(document.getElementById("cross_site_link")); |
+ } |
+ </script> |
+ </head> |
+ |
+<a href="title2.html" id="same_site_link">same-site</a><br> |
+<a href="http://foo.com/title2.html" id="cross_site_link">cross-site</a><br> |
+ |
+</html> |