fix(FN-000): harden mobile terminal focus capture for soft keyboard

This commit is contained in:
Fusion
2026-04-18 21:00:01 -07:00
committed by gsxdsm
parent 14cf34bef2
commit b1d9d43d2e
4 changed files with 26 additions and 7 deletions

View File

@@ -29,9 +29,9 @@ describe("terminal helper textarea CSS contract", () => {
expect(ruleBody).toMatch(/left:\s*0\b/);
});
it("prevents direct pointer interaction with the helper textarea", () => {
it("keeps helper textarea pointer-focusable for mobile keyboard activation", () => {
const ruleBody = findHelperTextareaRule();
expect(ruleBody).toMatch(/pointer-events\s*:\s*none\b/);
expect(ruleBody).toMatch(/pointer-events\s*:\s*auto\b/);
});
it("keeps the helper textarea effectively invisible", () => {