From 6a8d7b73de41967b75d6f8896302f69e0a47835e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20R=C3=B8ed?= Date: Tue, 28 Apr 2026 10:33:07 +0200 Subject: [PATCH 01/11] docs: add glimmer-attribute-behavior reference MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Captures empirically-verified Glimmer rendering behavior for HTML attributes with mustache values, so rule authors classifying GlimmerBooleanLiteral / GlimmerStringLiteral / GlimmerConcatStatement have a ground-truth reference instead of intuition. Notable findings the doc pins down: - attr={{"false"}} (bare string "false") renders as attr="false" — TRUTHY, not falsy as the literal suggests. - attr="{{false}}" (concat) sets the IDL property to true regardless of the literal value inside, even when HTML serialization shows nothing. Verified against