[Webkit-unassigned] [Bug 57604] Remove nonstandard noresize attribute from HTML FrameSet Element

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jun 21 11:16:52 PDT 2011


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





--- Comment #20 from Darin Adler <darin at apple.com>  2011-06-21 11:16:52 PST ---
(From update of attachment 97976)
View in context: https://bugs.webkit.org/attachment.cgi?id=97976&action=review

> Source/WebCore/html/HTMLFrameSetElement.cpp:100
>      } else if (attr->name() == noresizeAttr) {
> -        m_noresize = true;
> +        m_noresize = false;

This seems like the wrong way to do this. It’s silly to leave code in to parse the noresize attribute just to set this internal boolean to false, since it’s already false and will always be false. You could just as easily have removed this clause from parseMappedAttribute entirely.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list