mirror of
https://github.com/garrytan/gstack.git
synced 2026-05-14 00:12:12 +02:00
b6a946aa06
- Network idle: click on fetch button waits for XHR, static click is fast - Chain pipe: pipe-delimited commands, quoted args, JSON still works - State: save/load round-trip, name sanitization, missing state error - Frame: switch to iframe + back, snapshot context header, fill in frame, goto-in-frame guard, usage error New fixtures: network-idle.html (fetch + static buttons), iframe.html (srcdoc) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
31 lines
974 B
HTML
31 lines
974 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Test Page - Network Idle</title>
|
|
<style>
|
|
body { font-family: sans-serif; padding: 20px; }
|
|
#result { margin-top: 10px; color: green; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<button id="fetch-btn">Load Data</button>
|
|
<div id="result"></div>
|
|
<button id="static-btn">Static Action</button>
|
|
<div id="static-result"></div>
|
|
<script>
|
|
document.getElementById('fetch-btn').addEventListener('click', async () => {
|
|
// Simulate an XHR that takes 200ms
|
|
const res = await fetch('/echo');
|
|
const data = await res.json();
|
|
document.getElementById('result').textContent = 'Data loaded: ' + Object.keys(data).length + ' headers';
|
|
});
|
|
|
|
document.getElementById('static-btn').addEventListener('click', () => {
|
|
// No network activity — purely client-side
|
|
document.getElementById('static-result').textContent = 'Static action done';
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|