Use the central Dialog for Campaign previews

This commit is contained in:
2026-07-21 03:17:11 +02:00
parent 35b3cc151d
commit 04c214b149
4 changed files with 33 additions and 24 deletions

View File

@@ -15,8 +15,10 @@ assert(
"message previews expose their responsive backdrop hook"
);
assert(
overlaySource.includes('type="button" className="modal-close" aria-label={closeLabel} title={closeLabel}'),
"the close control has stable button semantics, an accessible name, and a tooltip"
overlaySource.includes("<Dialog") &&
overlaySource.includes("closeLabel={closeLabel}") &&
overlaySource.includes('dataset.dialogStackState !== "topmost"'),
"message previews use the central stacked Dialog with an accessible close label"
);
assert(
styles.includes("height: min(780px, calc(100dvh - 48px));"),