Anne van Kesteren wrote:
The bug with the last five testcases was that the tokenizer apparently didn't lowercase the end tag name. Oops!

   http://code.google.com/p/html5lib/

Very cool!

A small amount of debug output was left in the code. See attached diff to remove it.

- Sam Ruby
Index: parser.py
===================================================================
--- parser.py	(revision 260)
+++ parser.py	(working copy)
@@ -345,8 +345,6 @@
             assert self.innerHTML
             fosterParent = self.openElements[0]
             fosterParent.appendChild(element)
-        import sys
-        sys.stderr.write(repr(fosterParent))
 
     def generateImpliedEndTags(self, exclude=None):
         name = self.openElements[-1].name
_______________________________________________
implementors mailing list
[email protected]
http://lists.whatwg.org/listinfo.cgi/implementors-whatwg.org

Reply via email to