Bug 1794575 - Fix browser_utf8.js after HTML serialization changes. r=aleca

Differential Revision: https://phabricator.services.mozilla.com/D159109

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Geoff Lankow 2022-10-11 21:59:46 +00:00
Родитель 5f1efcb66f
Коммит de9e8946a9
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -43,7 +43,8 @@ add_task(async function testUTF8() {
let editorEl = iframeDocument.getElementById("item-description");
let editor = editorEl.getEditor(editorEl.contentWindow);
let description = editor.outputToString("text/plain", 0);
Assert.equal(description, UTF8STRING);
// The HTML editor makes the first character a NBSP instead of a space.
Assert.equal(description.replaceAll("\xA0", " "), UTF8STRING);
Assert.ok(
iframeDocument
.getElementById("item-categories")