~cytrogen/gstack

ref: 66894601e3de98c0c3b32869944edc241484b42e gstack/browse/test/fixtures/spa.html -rw-r--r-- 638 bytes
66894601 — Garry Tan chore: gitignore .factory and remove tracked files (v0.13.5.1) (#642) 11 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Test Page - SPA</title>
  <style>
    body { font-family: sans-serif; }
    #app { padding: 20px; }
    .loaded { color: green; }
  </style>
</head>
<body>
  <div id="app">Loading...</div>
  <script>
    console.log('[SPA] Starting render');
    console.warn('[SPA] This is a warning');
    console.error('[SPA] This is an error');
    setTimeout(() => {
      document.getElementById('app').innerHTML = '<h1 class="loaded">SPA Content Loaded</h1><p>Rendered by JavaScript</p>';
      console.log('[SPA] Render complete');
    }, 500);
  </script>
</body>
</html>