Fix issues rebuilding <body> attributes from source b=331894 r=glazou sr=mscott

This commit is contained in:
neil%parkwaycc.co.uk 2006-03-28 16:36:40 +00:00
parent 22bf6dd1e4
commit 00c6a7988b

View File

@ -1824,12 +1824,11 @@ nsHTMLEditor::RebuildDocumentFromSource(const nsAString& aSourceString)
if (!FindInReadable(NS_LITERAL_STRING(">"),beginclosebody,endclosebody))
return NS_ERROR_FAILURE;
nsAutoString bodyTag(Substring(beginbody,endclosebody));//<bodyXXXX >
// Truncate at the end of the body tag
// Kludge of the year: fool the parser by replacing "body" with "div" so we get a node
bodyTag.ReplaceSubstring(NS_LITERAL_STRING("body").get(),
NS_LITERAL_STRING("div").get());
nsAutoString bodyTag;
bodyTag.AssignLiteral("<div ");
bodyTag.Append(Substring(endbody, endclosebody));
nsCOMPtr<nsIDOMRange> range;
res = selection->GetRangeAt(0, getter_AddRefs(range));