🐛 Bug Fix
- Decorators:
@cacheHTML(used byUIButton.createContainerandToolbarButton.createContainer) kept a single template element per class for the whole page lifetime, keyed only by the constructor. When an editor was created inside an iframe (ownerDocument/ownerWindowoptions) and that iframe was later removed, every subsequent editor receivedcloneNodecopies of a template that belonged to the destroyed document, and its toolbar buttons rendered but never reacted to clicks. The cache is now keyed by the owner document first and only then by the class, so each document builds its own templates. #1457