@@ -1253,13 +1253,13 @@ def startTagCol(self, name, attributes):
12531253 self .startTagColgroup ("colgroup" , {})
12541254 self .parser .phase .processStartTag (name , attributes )
12551255
1256- def startTagRowGroup (self , name , attributes = {} ):
1256+ def startTagRowGroup (self , name , attributes ):
12571257 self .clearStackToTableContext ()
12581258 self .parser .insertElement (name , attributes )
12591259 self .parser .phase = self .parser .phases ["inTableBody" ]
12601260
12611261 def startTagImplyTbody (self , name , attributes ):
1262- self .startTagRowGroup ("tbody" )
1262+ self .startTagRowGroup ("tbody" , {} )
12631263 self .parser .phase .processStartTag (name , attributes )
12641264
12651265 def startTagTable (self , name , attributes ):
@@ -1302,8 +1302,6 @@ def endTagOther(self, name, attributes={}):
13021302
13031303class InCaptionPhase (Phase ):
13041304 # http://www.whatwg.org/specs/web-apps/current-work/#in-caption
1305- # XXX ...
1306-
13071305 def __init__ (self , parser ):
13081306 Phase .__init__ (self , parser )
13091307
0 commit comments