mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Auto merge of #16010 - nox:h5e, r=KiChjang
Properly coalesce whitespace when given a reference child (fixes #15979) <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/16010) <!-- Reviewable:end -->
This commit is contained in:
commit
32784c5fa8
2 changed files with 6 additions and 13 deletions
|
@ -657,7 +657,12 @@ fn insert(parent: &Node, reference_child: Option<&Node>, child: NodeOrText<JS<No
|
|||
parent.InsertBefore(&n, reference_child).unwrap();
|
||||
},
|
||||
NodeOrText::AppendText(t) => {
|
||||
if let Some(text) = parent.GetLastChild().and_then(Root::downcast::<Text>) {
|
||||
let text = reference_child
|
||||
.and_then(Node::GetPreviousSibling)
|
||||
.or_else(|| parent.GetLastChild())
|
||||
.and_then(Root::downcast::<Text>);
|
||||
|
||||
if let Some(text) = text {
|
||||
text.upcast::<CharacterData>().append_data(&t);
|
||||
} else {
|
||||
let text = Text::new(String::from(t).into(), &parent.owner_doc());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue