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
Родитель 38cd5b6f92
Коммит ace2980bab
1 изменённых файлов: 3 добавлений и 4 удалений

Просмотреть файл

@ -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));