Skip to content
This repository was archived by the owner on Aug 1, 2024. It is now read-only.

Commit e69cdb6

Browse files
Closure Teamcopybara-github
Closure Team
authored andcommittedAug 3, 2022
Fix rare case where string was inserted when list was removed
RELNOTES: Fix rare case where string was inserted when list was removed PiperOrigin-RevId: 465107556 Change-Id: I7eb6f3748b2a01766a36f9b41f93ca6ed785942b
1 parent 13c1f5d commit e69cdb6

File tree

3 files changed

+52
-6
lines changed

3 files changed

+52
-6
lines changed
 

‎closure/goog/editor/plugins/basictextformatter.js

+22-6
Original file line numberDiff line numberDiff line change
@@ -365,15 +365,31 @@ goog.editor.plugins.BasicTextFormatter.prototype.execCommandInternal = function(
365365

366366
if (hasPlaceholderContent && placeholderValue) {
367367
// Unfortunately, the browser sometimes removes the element we added and
368-
// creates a new element with the same content, so we can't add an
368+
// creates a new element with the same content or appends the text to
369+
// an existing text node, so we can't add an
369370
// id/class to the placeholder node and rely on that to find/delete the
370371
// content, and instead have to manually search for the content.
371-
const placeholderEl = goog.dom.findNode(
372+
// Example:
373+
//<ol>
374+
// <li><span>goog_12345</span>abc</li>
375+
// <li>def</li>
376+
// </ol>
377+
// can become
378+
// goog_12345abc<br>
379+
// def<br>
380+
// after execCommand is called
381+
const POTENTIAL_PLACEHOLDER_TAGS = [goog.dom.TagName.SPAN, '#text'];
382+
const placeholderNode = goog.dom.findNode(
372383
this.getFieldObject().getElement(),
373-
el => el.nodeName == goog.dom.TagName.SPAN &&
374-
el.textContent === placeholderValue);
375-
if (placeholderEl) {
376-
goog.dom.removeNode(placeholderEl);
384+
node => POTENTIAL_PLACEHOLDER_TAGS.includes(node.nodeName) &&
385+
node.textContent.includes(placeholderValue));
386+
if (placeholderNode) {
387+
if (placeholderNode.textContent === placeholderValue) {
388+
goog.dom.removeNode(placeholderNode);
389+
} else {
390+
placeholderNode.textContent =
391+
placeholderNode.textContent.replaceAll(placeholderValue, '');
392+
}
377393
}
378394
}
379395

‎closure/goog/editor/plugins/basictextformatter_test.js

+24
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,31 @@ testSuite({
602602
assertEquals(String(TagName.OL), list.tagName);
603603
assertEquals(
604604
3, dom.getElementsByTagNameAndClass(TagName.LI, null, list).length);
605+
tearDownListAndBlockquoteTests();
606+
},
607+
608+
/** @suppress {visibility} suppression added to enable type checking */
609+
testAddAndRemoveList_placeholderRemoved() {
610+
if (!userAgent.WEBKIT) {
611+
return;
612+
}
613+
// Test that we're not seeing https://bugs.webkit.org/show_bug.cgi?id=19539,
614+
// the type of multi-item lists.
615+
setUpListAndBlockquoteTests();
616+
617+
FIELDMOCK.$replay();
618+
let parent = dom.getElement('addAndRemoveList');
605619

620+
Range.createFromNodeContents(parent).select();
621+
// Add the ordered list
622+
FORMATTER.execCommandInternal(BasicTextFormatter.COMMAND.ORDERED_LIST);
623+
assertEquals(
624+
3, dom.getElementsByTagNameAndClass(TagName.LI, null, parent).length);
625+
FORMATTER.execCommandInternal(BasicTextFormatter.COMMAND.ORDERED_LIST);
626+
assertEquals(
627+
0, dom.getElementsByTagNameAndClass(TagName.LI, null, parent).length);
628+
// Assert that no placeholder is left behind
629+
assertFalse(parent.textContent.includes('goog'));
606630
tearDownListAndBlockquoteTests();
607631
},
608632

‎closure/goog/editor/plugins/basictextformatter_test_dom.html

+6
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,12 @@
5858
</ul>
5959
</div>
6060

61+
<div id="addAndRemoveList">
62+
aaa
63+
<div>bbb</div>
64+
<div>ccc</div>
65+
</div
66+
6167
<p>before <span id="toQuote">Foo. Bar, baz.</span> after</p>
6268
<p>before <div id="toQuote2">Foo.<p/>Bar,<p/>baz.</div> after</p>
6369

0 commit comments

Comments
 (0)