Skip to content

Commit 53049d5

Browse files
committed
Update www/.
1 parent ed76c7c commit 53049d5

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ ipch/
1111
*.opensdf
1212
*.dll
1313
*.exe
14+
*.pdb
1415
debug.log
1516
*.lib
1617
php/*.bat

www/dialogs.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<style type="text/css">@import url("style.css");</style>
2+
<a href="index.php">Go back to index</a>
3+
| <a href="<?php echo $_SERVER["REQUEST_URI"];?>">Refresh</a>
4+
5+
6+
<h1>Dialogs</h1>
7+
8+
<a href="javascript:alert('Test alert')">window.alert()</a>,
9+
<a href="javascript:confirm('Test confirm')">window.confirm()</a>,
10+
<a href="javascript:void(prompt('Test', 'prompt'))">window.prompt()</a>
11+
12+
<br><br>
13+
14+
<a href="javascript:print()">window.print()</a>
15+
<br><br>
16+
17+
<input type=file>
18+
<br><br>

www/window-close.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<style type="text/css">@import url("style.css");</style>
2+
<a href="index.php">Go back to index</a>
3+
| <a href="<?php echo $_SERVER["REQUEST_URI"];?>">Refresh</a>
4+
5+
6+
<h1>Test window.close</h1>
7+
8+
<a href="javascript:void(window.close())">window.close()</a>

0 commit comments

Comments
 (0)