🐛 Bug Fix
- #1474 An iframe lost its box when the editor was created inside a hidden container. The resizer wraps every iframe in a
<jodit>element and copiedoffsetWidth/offsetHeightinto it, but both are0while an ancestor hasdisplay:none, so the wrapper was pinned to0x0and never corrected once the container became visible. The following content then painted over the video. The wrapper now falls back to the iframe's ownwidth/heightattributes when the element cannot be measured, and is left to size itself when there is nothing to fall back to. Relative values such aswidth="100%"are not turned into a fixed pixel box.