~cytrogen/gstack

ref: 66894601e3de98c0c3b32869944edc241484b42e gstack/browse/test/fixtures/dialog.html -rw-r--r-- 603 bytes
66894601 — Garry Tan chore: gitignore .factory and remove tracked files (v0.13.5.1) (#642) 15 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Test Page - Dialog</title>
</head>
<body>
  <h1>Dialog Test</h1>
  <button id="alert-btn" onclick="alert('Hello from alert')">Alert</button>
  <button id="confirm-btn" onclick="document.getElementById('confirm-result').textContent = confirm('Are you sure?') ? 'confirmed' : 'cancelled'">Confirm</button>
  <button id="prompt-btn" onclick="document.getElementById('prompt-result').textContent = prompt('Enter name:', 'default') || 'null'">Prompt</button>
  <p id="confirm-result"></p>
  <p id="prompt-result"></p>
</body>
</html>