1
0
Fork 0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2025-07-04 20:46:39 +02:00

Added window.open test

For #431
This commit is contained in:
kkapsner 2020-01-21 22:45:28 +01:00
parent d547917b43
commit 29e61ada25
3 changed files with 34 additions and 0 deletions

5
test/window.open-test.js Normal file
View file

@ -0,0 +1,5 @@
document.getElementById("testLink").addEventListener("click", function(){
"use strict";
window.open("./audioTest.html", "_blank");
});