Function
overflowValueClips
(value: string | null | undefined)
Source from the content-addressed store, hash-verified
| 104 | * — every clipping value must, or real masked overflow gets reported as a bug. |
| 105 | */ |
| 106 | export function overflowValueClips(value: string | null | undefined): boolean { |
| 107 | return !!value && value !== "visible" && value !== "clip visible"; |
| 108 | } |
| 109 | |
| 110 | export function summarizeLayoutIssues(issues: LayoutIssue[]): LayoutSummary { |
| 111 | const errorCount = issues.filter((issue) => issue.severity === "error").length; |
Tested by
no test coverage detected