[Webkit-unassigned] [Bug 243385] srcdoc iframes fail to clear when srcdoc attribute removed

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Jul 31 12:00:03 PDT 2022


https://bugs.webkit.org/show_bug.cgi?id=243385

--- Comment #1 from Ryosuke Niwa <rniwa at webkit.org> ---
lol, this is because of the following code:

void HTMLFrameElementBase::parseAttribute(const QualifiedName& name, const AtomString& value)
{
    if (name == srcdocAttr) {
        if (value.isNull()) {
            const AtomString& srcValue = attributeWithoutSynchronization(srcAttr);
            if (!srcValue.isNull())
                setLocation(stripLeadingAndTrailingHTMLSpaces(srcValue));
        } else

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20220731/a15bb0cd/attachment.htm>


More information about the webkit-unassigned mailing list