summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/tabs/open_window_in_new_tab.html
diff options
context:
space:
mode:
Diffstat (limited to 'browser/base/content/test/tabs/open_window_in_new_tab.html')
-rw-r--r--browser/base/content/test/tabs/open_window_in_new_tab.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/browser/base/content/test/tabs/open_window_in_new_tab.html b/browser/base/content/test/tabs/open_window_in_new_tab.html
new file mode 100644
index 0000000000..2bd7613d26
--- /dev/null
+++ b/browser/base/content/test/tabs/open_window_in_new_tab.html
@@ -0,0 +1,15 @@
+<!doctype html>
+<script>
+function openWindow(id) {
+ window.childWindow = window.open(location.href + "?" + id, "", "");
+}
+</script>
+<button id="open-click" onclick="openWindow('open-click')">Open window</button>
+<button id="focus" onclick="window.childWindow.focus()">Focus window</button>
+<button id="open-mousedown">Open window</button>
+<script>
+document.getElementById("open-mousedown").addEventListener("mousedown", function(e) {
+ openWindow(this.id);
+ e.preventDefault();
+});
+</script>