| <!doctype html> |
| <html lang="en"> |
| <head> |
| <meta charset="utf-8" /> |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| <title>WebGL Branch Repro</title> |
| <style> |
| /* |
| Original UI intentionally left disabled while focusing on fullscreen |
| branch visualization. |
| |
| :root { |
| color-scheme: light; |
| --bg: #f4f0e8; |
| --panel: #fffaf2; |
| --ink: #1d1d1b; |
| } |
| */ |
| |
| html, |
| body { |
| margin: 0; |
| width: 100%; |
| height: 100%; |
| overflow: hidden; |
| background: #000; |
| } |
| |
| canvas { |
| display: block; |
| width: 100vw; |
| height: 100vh; |
| } |
| </style> |
| </head> |
| <body> |
| <!-- |
| <main> |
| <section class="controls"> |
| <button id="run-all">Refresh</button> |
| </section> |
| <section class="panel meta" id="meta"></section> |
| <section class="results" id="results"></section> |
| </main> |
| --> |
| <canvas id="gl"></canvas> |
| <script type="module" src="./app.js?v=fullscreen2"></script> |
| </body> |
| </html> |