diff -Naur '--exclude=*.orig' '--exclude=.mozconfig' '--exclude=configure' '--exclude=*.mk' '--exclude=*.pyc' mozilla-release/content/html/document/src/nsHTMLContentSink.cpp mozilla-release-magellan/content/html/document/src/nsHTMLContentSink.cpp --- mozilla-release/content/html/document/src/nsHTMLContentSink.cpp 2012-03-13 02:36:41.000000000 +0100 +++ mozilla-release-magellan/content/html/document/src/nsHTMLContentSink.cpp 2012-04-11 15:38:14.466982524 +0200 @@ -808,8 +808,8 @@ break; case eHTMLTag_button: - case eHTMLTag_audio: - case eHTMLTag_video: +// case eHTMLTag_audio: +// case eHTMLTag_video: content->DoneCreatingElement(); break; diff -Naur '--exclude=*.orig' '--exclude=.mozconfig' '--exclude=configure' '--exclude=*.mk' '--exclude=*.pyc' mozilla-release/content/xml/document/src/nsXMLContentSink.cpp mozilla-release-magellan/content/xml/document/src/nsXMLContentSink.cpp --- mozilla-release/content/xml/document/src/nsXMLContentSink.cpp 2012-03-13 02:36:44.000000000 +0100 +++ mozilla-release-magellan/content/xml/document/src/nsXMLContentSink.cpp 2012-04-11 15:47:38.549982523 +0200 @@ -1077,9 +1077,10 @@ if (nodeInfo->NamespaceID() == kNameSpaceID_XHTML) { if (nodeInfo->NameAtom() == nsGkAtoms::input || nodeInfo->NameAtom() == nsGkAtoms::button || - nodeInfo->NameAtom() == nsGkAtoms::menuitem || - nodeInfo->NameAtom() == nsGkAtoms::audio || - nodeInfo->NameAtom() == nsGkAtoms::video) { + nodeInfo->NameAtom() == nsGkAtoms::menuitem) { + //nodeInfo->NameAtom() == nsGkAtoms::menuitem || + //nodeInfo->NameAtom() == nsGkAtoms::audio || + //nodeInfo->NameAtom() == nsGkAtoms::video) { content->DoneCreatingElement(); } else if (nodeInfo->NameAtom() == nsGkAtoms::head && !mCurrentHead) { mCurrentHead = content; diff -Naur '--exclude=*.orig' '--exclude=.mozconfig' '--exclude=configure' '--exclude=*.mk' '--exclude=*.pyc' mozilla-release/content/xslt/src/xslt/txMozillaXMLOutput.cpp mozilla-release-magellan/content/xslt/src/xslt/txMozillaXMLOutput.cpp --- mozilla-release/content/xslt/src/xslt/txMozillaXMLOutput.cpp 2012-03-13 02:36:44.000000000 +0100 +++ mozilla-release-magellan/content/xslt/src/xslt/txMozillaXMLOutput.cpp 2012-04-11 15:51:59.674982523 +0200 @@ -338,9 +338,10 @@ } else if (ns == kNameSpaceID_XHTML && (localName == nsGkAtoms::input || localName == nsGkAtoms::button || - localName == nsGkAtoms::menuitem || - localName == nsGkAtoms::audio || - localName == nsGkAtoms::video )) { + localName == nsGkAtoms::menuitem )) { + //localName == nsGkAtoms::menuitem || + //localName == nsGkAtoms::audio || + //localName == nsGkAtoms::video )) { element->DoneCreatingElement(); } }