[webkit-reviews] review granted: [Bug 87371] RadioNodeList does not include a object element : [Attachment 143990] patch

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri May 25 00:28:23 PDT 2012


Kent Tamura <tkent at chromium.org> has granted Rakesh <rakesh.kn at motorola.com>'s
request for review:
Bug 87371: RadioNodeList does not include a object element
https://bugs.webkit.org/show_bug.cgi?id=87371

Attachment 143990: patch
https://bugs.webkit.org/attachment.cgi?id=143990&action=review

------- Additional Comments from Kent Tamura <tkent at chromium.org>
View in context: https://bugs.webkit.org/attachment.cgi?id=143990&action=review


> Source/WebCore/html/RadioNodeList.cpp:103
> +    if (!testElement->hasTagName(objectTag)) {
> +	   if (!testElement->isFormControlElement())

nit: this can be
  if (!testElement->hasTagName(objectTag) &&
!testElement->isFormControlElement())
      return false;


More information about the webkit-reviews mailing list