[webkit-changes] cvs commit: WebCore/khtml/html htmlparser.cpp

Vicki vicki at opensource.apple.com
Fri Oct 7 11:38:47 PDT 2005


vicki       05/10/07 11:38:47

  Modified:    .        ChangeLog
               khtml/html htmlparser.cpp
  Log:
          Reviewed by Hyatt.
  
  	- pass the current form to the isindex constructor, so that isindex doesn't malfunction in the
  	case of a misnested form
  
          * khtml/html/htmlparser.cpp:
          (HTMLParser::handleIsindex):
  
  Revision  Changes    Path
  1.217     +10 -0     WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.216
  retrieving revision 1.217
  diff -u -r1.216 -r1.217
  --- ChangeLog	7 Oct 2005 02:58:04 -0000	1.216
  +++ ChangeLog	7 Oct 2005 18:38:45 -0000	1.217
  @@ -1,3 +1,13 @@
  +2005-10-07  Vicki Murley  <vicki at apple.com>
  +
  +        Reviewed by Hyatt.
  + 
  +	- pass the current form to the isindex constructor, so that isindex doesn't malfunction in the 
  +	case of a misnested form
  +
  +        * khtml/html/htmlparser.cpp:
  +        (HTMLParser::handleIsindex):
  +
   2005-10-06  Justin Garcia  <justin.garcia at apple.com>
   
           Reviewed by harrison
  
  
  
  1.119     +1 -1      WebCore/khtml/html/htmlparser.cpp
  
  Index: htmlparser.cpp
  ===================================================================
  RCS file: /cvs/root/WebCore/khtml/html/htmlparser.cpp,v
  retrieving revision 1.118
  retrieving revision 1.119
  diff -u -r1.118 -r1.119
  --- htmlparser.cpp	7 Oct 2005 00:46:49 -0000	1.118
  +++ htmlparser.cpp	7 Oct 2005 18:38:46 -0000	1.119
  @@ -1330,7 +1330,7 @@
       NamedMappedAttrMapImpl *attrs = t->attrs;
       t->attrs = NULL;
   
  -    HTMLIsIndexElementImpl *isIndex = new HTMLIsIndexElementImpl(document);
  +    HTMLIsIndexElementImpl *isIndex = new HTMLIsIndexElementImpl(document, form);
       isIndex->setAttributeMap(attrs);
       isIndex->setAttribute(typeAttr, "khtml_isindex");
   
  
  
  



More information about the webkit-changes mailing list