mattermost-desktop/e2e/modules/test.html

21 lines
305 B
HTML
Raw Permalink Normal View History

2024-10-03 06:35:14 -07:00
<html>
<head>
<title>Mattermost Desktop testing html</title>
</head>
<body>
<h1>window.open() test</h1>
<p>
<input type="button" value="window.open()" onclick="open_window()">
</p>
<script>
function open_window() {
window.open('./test.html');
}
</script>
</body>
</html>