Files
MyAiDesk/nomifun-tauri/crates/agent/nomi-browser/tests/fixtures/redline_gate.html
T
freedak f7a720204a Update: 将子项目从 submodule 转为完整内容
- 移除 GovAI, nomifun-tauri, 算力盒子 的 submodule 引用
- 添加所有子项目的完整源代码
- 保留原始 .git 为 .git.bak 备份
2026-07-04 19:20:46 +08:00

24 lines
917 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>F1-sec redline gate facade test</title>
<style>
html, body { margin: 0; padding: 0; font: 16px sans-serif; }
button { display: block; margin: 12px; padding: 8px 16px; }
</style>
</head>
<body>
<h1>F1-sec redline gate</h1>
<!--
F1-sec facade 集成测试用:一个不可逆(accname="Pay now")按钮 + 一个良性("Show more")按钮。
facade 的 redline 门据 observe 的 accname 分类 click
- yolo/companion(审批旁路)会话点 "Pay now" → hard-deny Blocked(证 fail-open 已闭);
- 普通会话点 "Pay now" → 门不拦(交 orchestration)。
用 file:// fixture(非 data: URL),与其它集成测试同接线,避免 data: URL 解析坑。
-->
<button id="pay" aria-label="Pay now">Pay now</button>
<button id="more" aria-label="Show more">Show more</button>
</body>
</html>