Files
Aislo/resources/tester/spreadsheet/harness_spreadsheet_d.html
T
eomsangdonandClaude Opus 5.5 48a2135132 feat(spreadsheet): D 잇기 — 진짜 A 엔진과 재검증 · inspect 선택(window.__aisloSheet · 임시) · 시험 틀 한 번 시나리오
- spreadsheet.ts — `inspect` 선택이면 문맥을 window.__aisloSheet 에 걺(M02 [스프레드시트 시험] 단추 전용 · destroy 때 뗌 · 1단계 검증 뒤 지움)
- 시험 틀 — ssScenario()(페이지 안 한 번에 한글 · 가리키기 · 재계산 · 되돌리기 · Delete · Ctrl+Enter · 수식 입력줄 · F2) · 가짜 격자 data-addr · 진짜 분수 값 보임 · 오류 모음

Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01L6KXAabDTenEU7hrDQmCKY
2026-09-27 20:33:55 +09:00

39 lines
889 B
HTML

<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8" />
<title>스프레드시트 D 시험 틀</title>
<style>
body {
margin: 0;
font-family: sans-serif;
}
#host {
height: 560px;
margin: 8px;
border: 1px solid #999;
}
#fakes {
margin: 8px;
color: #bc4c00;
font-size: 12px;
}
</style>
</head>
<body>
<div id="fakes"></div>
<div id="host"></div>
<script>
window.ssErrors = [];
window.addEventListener("error", (e) =>
window.ssErrors.push(String(e.error?.stack || e.message)),
);
</script>
<script src="../../../tmp/spreadsheet_d/harness.js"></script>
<script>
document.getElementById("fakes").textContent =
"가짜 부품: " + (window.__ssFakes || []).join(", ");
</script>
</body>
</html>