/* Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ */ "use strict"; /** * Request 2x longer timeout for this test. * There are lot of test cases in this file, but they are all of the same nature, * and it makes the most sense to have them all in this single test file. */ requestLongerTimeout(2); add_task(async function test_translated_div_element_and_visible_change() { let hasVisibleChangeOccurred = false; const { translate, htmlMatches, cleanup } = await createTranslationsDoc( /* html */ `
This is a simple translation.
`, { mockedTranslatorPort: createMockedTranslatorPort(), mockedReportVisibleChange: () => { hasVisibleChangeOccurred = true; }, } ); translate(); await htmlMatches( "A single element with a single text node is translated into uppercase.", /* html */ `
THIS IS A SIMPLE TRANSLATION.
` ); Assert.ok(hasVisibleChangeOccurred, "A visible change was reported."); cleanup(); }); add_task(async function test_translated_textnode() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc( "This is a simple text translation." ); translate(); await htmlMatches( "A Text node at the root is translated into all caps", "THIS IS A SIMPLE TEXT TRANSLATION." ); cleanup(); }); add_task(async function test_no_text_trees() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ `
`); translate(); await htmlMatches( "Trees with no text are not affected", /* html */ `
` ); cleanup(); }); add_task(async function test_no_text_trees() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(""); translate(); await htmlMatches("No text is still no text", ""); cleanup(); }); add_task(async function test_translated_title() { const { cleanup, document, translate } = await createTranslationsDoc(/* html */ ` This is an actual full page. `); translate(); const translatedTitle = "THIS IS AN ACTUAL FULL PAGE."; await waitForCondition(() => document.title === translatedTitle); cleanup(); }); add_task(async function test_translated_nested_elements() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ ` `); translate(); await htmlMatches( "The nested elements are translated into all caps.", /* html */ ` ` ); cleanup(); }); /** * Only translate elements with a matching "from" language. */ add_task(async function test_translated_language() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ `
No lang property
Language matches
Language mismatch is ignored.
Language match with region.
Language mismatch with
nested elements.
`); translate(); await htmlMatches( "Language matching of elements behaves as expected.", /* html */ `
NO LANG PROPERTY
LANGUAGE MATCHES
Language mismatch is ignored.
LANGUAGE MATCH WITH REGION.
Language mismatch with
nested elements.
` ); cleanup(); }); /** * Test elements that have been marked as ignored. */ add_task(async function test_ignored_translations() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ `
This is translated.
This is not translated.
This is not translated.
This is not translated.
This is not translated.
This is not translated.
This is translated.
`); translate(); await htmlMatches( "Language matching of elements behaves as expected.", /* html */ `
THIS IS TRANSLATED.
This is not translated.
This is not translated.
This is not translated.
This is not translated.
This is not translated.
THIS IS TRANSLATED.
` ); cleanup(); }); /** * Test excluded tags. */ add_task(async function test_excluded_tags() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ `
This is translated.
This is ignored `); translate(); await htmlMatches( "EXCLUDED_TAGS are not translated", /* html */ `
THIS IS TRANSLATED.
This is ignored ` ); cleanup(); }); add_task(async function test_comments() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ `
This is translated.
`); translate(); await htmlMatches( "Comments do not affect things.", /* html */ `
THIS IS TRANSLATED.
` ); cleanup(); }); /** * Test the batching behavior on what is sent in for a translation. */ add_task(async function test_translation_batching() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc( /* html */ `
This is a simple section.
This entire section continues in a batch.
`, { mockedTranslatorPort: createBatchedMockedTranslatorPort() } ); translate(); await htmlMatches( "Batching", /* html */ `
bbbb bb b bbbbbb bbbbbbb.
aaaa aaaaaa aaaaaaa aaaaaaaaa aa a aaaaa .
` ); cleanup(); }); /** * Test the inline/block behavior on what is sent in for a translation. */ add_task(async function test_translation_inline_styling() { const { document, translate, htmlMatches, cleanup } = await createTranslationsDoc( /* html */ ` Bare text is sent in a batch. Inline text is sent in a batch. Display "block" overrides the inline designation. `, { mockedTranslatorPort: createBatchedMockedTranslatorPort() } ); info("Setting a span as display: block."); const span = document.getElementById("spanAsBlock"); span.style.display = "block"; is(span.ownerGlobal.getComputedStyle(span).display, "block"); translate(); await htmlMatches( "Span as a display: block", /* html */ ` cccc cccc cc cccc cc c ccccc. bbbbbb bbbb bb bbbb bb b bbbbb . aaaaaaa "aaaaa" aaaaaaaaa aaa aaaaaa aaaaaaaaaaa. ` ); cleanup(); }); /** * Test what happens when there are many inline elements. */ add_task(async function test_many_inlines() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc( /* html */ `
This is a much longer section that includes many span elements to test what happens in cases like this.
`, { mockedTranslatorPort: createBatchedMockedTranslatorPort() } ); translate(); await htmlMatches( "Batching", /* html */ `
aaaa aa a aaaa aaaaaa aaaaaaa aaaa aaaaaaaa aaaa aaaa aaaaaaaa aa aaaa aaaa aaaaaaa aa aaaaa aaaa aaaa.
` ); cleanup(); }); /** * Test what happens when there are many inline elements. */ add_task(async function test_many_inlines() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc( /* html */ `
This is a
much longer
section that includes
many div elements
to test what happens
in cases like this.
`, { mockedTranslatorPort: createBatchedMockedTranslatorPort() } ); translate(); await htmlMatches( "Batching", /* html */ `
ffff ff f
eeee eeeeee
ddddddd dddd dddddddd
cccc ccc cccccccc
bb bbbb bbbb bbbbbbb
aa aaaaa aaaa aaaa.
` ); cleanup(); }); /** * Test a mix of inline text and block elements. */ add_task(async function test_presumed_inlines1() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc( /* html */ `
Text node
Block element
`, { mockedTranslatorPort: createBatchedMockedTranslatorPort() } ); translate(); await htmlMatches( "Mixing a text node with block elements will send in two batches.", /* html */ `
bbbb bbbb
aaaaa aaaaaaa
` ); cleanup(); }); /** * Test what happens when there are many inline elements. */ add_task(async function test_presumed_inlines2() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc( /* html */ `
Text node Inline
Block Element
`, { mockedTranslatorPort: createBatchedMockedTranslatorPort() } ); translate(); await htmlMatches( "A mix of inline and blocks will be sent in separately.", /* html */ `
cccc cccc bbbbbb
aaaaa aaaaaaa
` ); cleanup(); }); add_task(async function test_presumed_inlines3() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc( /* html */ `
Text node Inline
Block Element 1
Block Element 2
Block Element 3
`, { mockedTranslatorPort: createBatchedMockedTranslatorPort() } ); translate(); await htmlMatches( "Conflicting inlines will be sent in as separate blocks if there are more block elements", /* html */ `
eeee eeee dddddd
ccccc ccccccc c
bbbbb bbbbbbb b
aaaaa aaaaaaa a
` ); cleanup(); }); /** * Test the display "none" properties properly subdivide in block elements. */ add_task(async function test_display_none() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc( /* html */ `

This is some text. It has inline elements

`, { mockedTranslatorPort: createBatchedMockedTranslatorPort() } ); translate(); // Note: The bergamot translator does not translate style elements, while our fake // translator does translate the inside of style elements. That is why in the assertion // here the style element is blank rather than containing style. await htmlMatches( "Display none", /* html */ `

aaaa aa aaaa aaaa. aa aaa aaaaaa aaaaaaaa

` ); cleanup(); }); /** * Test the display "none" properties properly subdivide in block elements. * * TODO - See Bug 1885235 * * This assertion is wrong, as our test suite doesn't properly compute the style for * elements. The div with "display; none;" is still block, not "none". */ add_task(async function test_display_none_div() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc( /* html */ `
Start of inline text
hidden portion of
rest of inline text.
`, { mockedTranslatorPort: createBatchedMockedTranslatorPort() } ); translate(); // eslint-disable-next-line no-unused-vars const _realExpectedResults = /* html */ `
aaaaa aa aaaaaa aaaa
aaaaaa aaaaaaa aa
aaaa aa aaaaaa aaaa.
`; const currentResults = /* html */ `
ccccc cc cccccc cccc
bbbbbb bbbbbbb bb
aaaa aa aaaaaa aaaa.
`; await htmlMatches("Display none", currentResults); cleanup(); }); add_task(async function test_chunking_large_text() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc( /* html */ `
        Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque fermentum est ante, ut porttitor enim molestie et. Nam mattis ullamcorper justo a ultrices. Ut ac sodales lorem. Sed feugiat ultricies lacus. Proin dapibus sit amet nunc a ullamcorper. Donec leo purus, convallis quis urna non, semper pulvinar augue. Nulla placerat turpis arcu, sit amet imperdiet sapien tincidunt ut. Donec sit amet luctus lorem, sed consectetur lectus. Pellentesque est nisi, feugiat et ipsum quis, vestibulum blandit nulla.

        Proin accumsan sapien ut nibh mattis tincidunt. Donec facilisis nibh sodales, mattis risus et, malesuada lorem. Nam suscipit lacinia venenatis. Praesent ac consectetur ante. Vestibulum pulvinar ut massa in viverra. Nunc tincidunt tortor nunc. Vivamus sit amet hendrerit mi. Aliquam posuere velit non ante facilisis euismod. In ullamcorper, lacus vel hendrerit tincidunt, dui justo iaculis nulla, sit amet tincidunt nisl magna et urna. Sed varius tincidunt ligula. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nam sed gravida ligula. Donec tincidunt arcu eros, ac maximus magna auctor eu. Vivamus suscipit neque velit, in ullamcorper elit pulvinar et. Morbi auctor tempor risus, imperdiet placerat velit gravida vel. Duis ultricies accumsan libero quis molestie.

        Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae; Etiam nec arcu dapibus enim vulputate vulputate aliquet a libero. Nam hendrerit pulvinar libero, eget posuere quam porta eu. Pellentesque dignissim justo eu leo accumsan, sit amet suscipit ante gravida. Vivamus eu faucibus orci. Quisque sagittis tortor eget orci venenatis porttitor. Quisque mollis ipsum a dignissim dignissim.

        Aenean sagittis nisi lectus, non lacinia orci dapibus viverra. Donec diam lorem, tincidunt sed massa vel, vulputate tincidunt metus. In quam felis, egestas et faucibus faucibus, vestibulum quis tortor. Morbi odio mi, suscipit vitae leo in, consequat interdum augue. Quisque purus velit, dictum ac ante eget, volutpat dapibus ante. Suspendisse quis augue vitae velit elementum dictum nec aliquet nisl. Maecenas vestibulum quam augue, eu maximus urna blandit eu. Donec nunc risus, elementum id ligula nec, ultrices venenatis libero. Suspendisse ullamcorper ex ante, malesuada pulvinar sem placerat vel.

        In hac habitasse platea dictumst. Duis vulputate tellus arcu, at posuere ligula viverra luctus. Fusce ultrices malesuada neque vitae vehicula. Aliquam blandit nisi sed nibh facilisis, non varius turpis venenatis. Vestibulum ut velit laoreet, sagittis leo ac, pharetra ex. Aenean mollis risus sed nibh auctor, et feugiat neque iaculis. Fusce fermentum libero metus, at consectetur massa euismod sed. Mauris ut metus sit amet leo porttitor mollis. Vivamus tincidunt lorem non purus suscipit sollicitudin. Maecenas ut tristique elit. Ut eu volutpat turpis. Suspendisse nec tristique augue. Nullam faucibus egestas volutpat. Sed tempor eros et mi ultrices, nec feugiat eros egestas.
      
`, { mockedTranslatorPort: createBatchedMockedTranslatorPort() } ); translate(); await htmlMatches( "Large chunks of text can be still sent in for translation in one big pass, " + "this could be slow bad behavior for the user.", /* html */ `
        aaaaa aaaaa aaaaa aaa aaaa, aaaaaaaaaaa aaaaaaaaaa aaaa. aaaaaaa aaaaaaaaa aaa aaaa, aa aaaaaaaaa aaaa aaaaaaaa aa. aaa aaaaaa aaaaaaaaaaa aaaaa a aaaaaaaa. aa aa aaaaaaa aaaaa. aaa aaaaaaa aaaaaaaaa aaaaa. aaaaa aaaaaaa aaa aaaa aaaa a aaaaaaaaaaa. aaaaa aaa aaaaa, aaaaaaaaa aaaa aaaa aaa, aaaaaa aaaaaaaa aaaaa. aaaaa aaaaaaaa aaaaaa aaaa, aaa aaaa aaaaaaaaa aaaaaa aaaaaaaaa aa. aaaaa aaa aaaa aaaaaa aaaaa, aaa aaaaaaaaaaa aaaaaa. aaaaaaaaaaaa aaa aaaa, aaaaaaa aa aaaaa aaaa, aaaaaaaaaa aaaaaaa aaaaa.

        aaaaa aaaaaaaa aaaaaa aa aaaa aaaaaa aaaaaaaaa. aaaaa aaaaaaaaa aaaa aaaaaaa, aaaaaa aaaaa aa, aaaaaaaaa aaaaa. aaa aaaaaaaa aaaaaaa aaaaaaaaa. aaaaaaaa aa aaaaaaaaaaa aaaa. aaaaaaaaaa aaaaaaaa aa aaaaa aa aaaaaaa. aaaa aaaaaaaaa aaaaaa aaaa. aaaaaaa aaa aaaa aaaaaaaaa aa. aaaaaaa aaaaaaa aaaaa aaa aaaa aaaaaaaaa aaaaaaa. aa aaaaaaaaaaa, aaaaa aaa aaaaaaaaa aaaaaaaaa, aaa aaaaa aaaaaaa aaaaa, aaa aaaa aaaaaaaaa aaaa aaaaa aa aaaa. aaa aaaaaa aaaaaaaaa aaaaaa. aaaaaaaa aa aaaaaaaaa aaaaa aa aaaa aaaaa aaaaaa aa aaaaaaaa. aaa aaa aaaaaaa aaaaaa. aaaaa aaaaaaaaa aaaa aaaa, aa aaaaaaa aaaaa aaaaaa aa. aaaaaaa aaaaaaaa aaaaa aaaaa, aa aaaaaaaaaaa aaaa aaaaaaaa aa. aaaaa aaaaaa aaaaaa aaaaa, aaaaaaaaa aaaaaaaa aaaaa aaaaaaa aaa. aaaa aaaaaaaaa aaaaaaaa aaaaaa aaaa aaaaaaaa.

        aaaaaaaaaa aaaa aaaaa aaaaaa aa aaaaaaaa aaaa aaaaaa aa aaaaaaaa aaaaaaa aaaaaaa aaaaa; aaaaa aaa aaaa aaaaaaa aaaa aaaaaaaaa aaaaaaaaa aaaaaaa a aaaaaa. aaa aaaaaaaaa aaaaaaaa aaaaaa, aaaa aaaaaaa aaaa aaaaa aa. aaaaaaaaaaaa aaaaaaaaa aaaaa aa aaa aaaaaaaa, aaa aaaa aaaaaaaa aaaa aaaaaaa. aaaaaaa aa aaaaaaaa aaaa. aaaaaaa aaaaaaaa aaaaaa aaaa aaaa aaaaaaaaa aaaaaaaaa. aaaaaaa aaaaaa aaaaa a aaaaaaaaa aaaaaaaaa.

        aaaaaa aaaaaaaa aaaa aaaaaa, aaa aaaaaaa aaaa aaaaaaa aaaaaaa. aaaaa aaaa aaaaa, aaaaaaaaa aaa aaaaa aaa, aaaaaaaaa aaaaaaaaa aaaaa. aa aaaa aaaaa, aaaaaaa aa aaaaaaaa aaaaaaaa, aaaaaaaaaa aaaa aaaaaa. aaaaa aaaa aa, aaaaaaaa aaaaa aaa aa, aaaaaaaaa aaaaaaaa aaaaa. aaaaaaa aaaaa aaaaa, aaaaaa aa aaaa aaaa, aaaaaaaa aaaaaaa aaaa. aaaaaaaaaaa aaaa aaaaa aaaaa aaaaa aaaaaaaaa aaaaaa aaa aaaaaaa aaaa. aaaaaaaa aaaaaaaaaa aaaa aaaaa, aa aaaaaaa aaaa aaaaaaa aa. aaaaa aaaa aaaaa, aaaaaaaaa aa aaaaaa aaa, aaaaaaaa aaaaaaaaa aaaaaa. aaaaaaaaaaa aaaaaaaaaaa aa aaaa, aaaaaaaaa aaaaaaaa aaa aaaaaaaa aaa.

        aa aaa aaaaaaaaa aaaaaa aaaaaaaa. aaaa aaaaaaaaa aaaaaa aaaa, aa aaaaaaa aaaaaa aaaaaaa aaaaaa. aaaaa aaaaaaaa aaaaaaaaa aaaaa aaaaa aaaaaaaa. aaaaaaa aaaaaaa aaaa aaa aaaa aaaaaaaaa, aaa aaaaaa aaaaaa aaaaaaaaa. aaaaaaaaaa aa aaaaa aaaaaaa, aaaaaaaa aaa aa, aaaaaaaa aa. aaaaaa aaaaaa aaaaa aaa aaaa aaaaaa, aa aaaaaaa aaaaa aaaaaaa. aaaaa aaaaaaaaa aaaaaa aaaaa, aa aaaaaaaaaaa aaaaa aaaaaaa aaa. aaaaaa aa aaaaa aaa aaaa aaa aaaaaaaaa aaaaaa. aaaaaaa aaaaaaaaa aaaaa aaa aaaaa aaaaaaaa aaaaaaaaaaaa. aaaaaaaa aa aaaaaaaaa aaaa. aa aa aaaaaaaa aaaaaa. aaaaaaaaaaa aaa aaaaaaaaa aaaaa. aaaaaa aaaaaaaa aaaaaaa aaaaaaaa. aaa aaaaaa aaaa aa aa aaaaaaaa, aaa aaaaaaa aaaa aaaaaaa.
    
` ); cleanup(); }); add_task(async function test_reordering() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc( /* html */ ` B - This was first. A - This was second. C - This was third. `, { mockedTranslatorPort: createdReorderingMockedTranslatorPort() } ); translate(); await htmlMatches( "Nodes can be re-ordered by the translator", /* html */ ` A - THIS WAS SECOND. B - THIS WAS FIRST. C - THIS WAS THIRD. ` ); cleanup(); }); add_task(async function test_reordering2() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc( /* html */ ` B - This was first. A - This was second. C - This was third. `, { mockedTranslatorPort: createdReorderingMockedTranslatorPort() } ); translate(); // Note: ${" "} is used below to ensure that the whitespace is not stripped from // the test. await htmlMatches( "Text nodes can be re-ordered.", /* html */ ` A - THIS WAS SECOND. B - THIS WAS FIRST. ${" "} C - THIS WAS THIRD. ` ); cleanup(); }); add_task(async function test_mutations() { const { translate, htmlMatches, cleanup, document } = await createTranslationsDoc(/* html */ `
This is a simple translation.
`); translate(); await htmlMatches( "It translates.", /* html */ `
THIS IS A SIMPLE TRANSLATION.
` ); info('Trigger the "childList" mutation.'); const div = document.createElement("div"); div.innerText = "This is an added node."; document.body.appendChild(div); await htmlMatches( "The added node gets translated.", /* html */ `
THIS IS A SIMPLE TRANSLATION.
THIS IS AN ADDED NODE.
` ); info('Trigger the "characterData" mutation.'); document.querySelector("div").firstChild.nodeValue = "This is a changed node."; await htmlMatches( "The changed node gets translated", /* html */ `
THIS IS A CHANGED NODE.
THIS IS AN ADDED NODE.
` ); cleanup(); }); add_task(async function test_svgs() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ `
Text before is translated
Text inside of the SVG is translated.
Text after is translated
`); translate(); await htmlMatches( "SVG text gets translated, and style elements are left alone.", /* html */ `
TEXT BEFORE IS TRANSLATED
TEXT INSIDE OF THE SVG IS TRANSLATED.
TEXT AFTER IS TRANSLATED
` ); await cleanup(); }); add_task(async function test_svgs_more() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ `
This is a div inside of an SVG.
`); translate(); await htmlMatches( "Foreign objects get translated", /* html */ `
THIS IS A DIV INSIDE OF AN SVG.
` ); await cleanup(); }); add_task(async function test_standalone_svg_document() { const svgSource = /* html */ ` Test title Test text inside of standalone SVG. `; const { translate, htmlMatches, cleanup, document } = await createTranslationsDoc(svgSource, { parserType: "image/svg+xml" }); translate(); await htmlMatches( "Standalone SVG documents are translated.", /* html */ ` TEST TITLE TEST TEXT INSIDE OF STANDALONE SVG. `, document ); await cleanup(); }); add_task(async function test_tables() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ `
Table header 1 Table header 2
Table data 1 Table data 2
`); translate(); await htmlMatches( "Tables are correctly translated.", /* html */ `
TABLE HEADER 1 TABLE HEADER 2
TABLE DATA 1 TABLE DATA 2
` ); cleanup(); }); add_task(async function test_option_values() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ ` `); translate(); await htmlMatches( "Option values are not changed", /* html */ ` ` ); cleanup(); }); add_task(async function test_option_values() { const { document, translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ ` `); const select = document.querySelector("select"); document.querySelector("select").addEventListener("change", () => { ok(false, "The change event should not ever be fired."); }); is(document.querySelector("select").value, "new", 'The "new" value selected'); translate(); await htmlMatches( "Option values are not changed", /* html */ ` ` ); is( document.querySelector("select").value, "new", 'After translation the "new" value is still selected' ); is( document.querySelector("select"), select, "The original select element is still present" ); cleanup(); }); add_task(async function test_basic_attributes() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ ` `); translate(); await htmlMatches( "Placeholders support added", /* html */ ` ` ); cleanup(); }); add_task(async function test_html_lang_attribute() { const { translate, document, cleanup } = await createTranslationsDoc(/* html */ ` `); translate(); await waitForCondition(() => document.documentElement.lang === "es"); cleanup(); }); add_task(async function test_attributes_with_innerhtml() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ `
Simple translation.
`); translate(); await htmlMatches( "translation for title with innerHTML", /* html */ `
SIMPLE TRANSLATION.
` ); cleanup(); }); add_task(async function test_multiple_attributes() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ ` `); translate(); await htmlMatches( "title and placeholder together", /* html */ ` ` ); cleanup(); }); add_task(async function test_meta_content_translation() { const { cleanup, document, translate } = await createTranslationsDoc(/* html */ ` `); translate(); const metaDescription = document.querySelector('meta[name="description"]'); const metaKeywords = document.querySelector('meta[name="keywords"]'); await waitForCondition( () => metaDescription?.content === "SOME PAGE DESCRIPTION" ); await waitForCondition(() => metaKeywords?.content === "SOME PAGE KEYWORDS"); cleanup(); }); add_task(async function test_translated_title() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ `
Inner text is translated.
`); translate(); await htmlMatches( "Language matching of elements behaves as expected.", /* html */ `
INNER TEXT IS TRANSLATED.
` ); cleanup(); }); add_task(async function test_translated_aria_attributes() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ `
Content
`); translate(); await htmlMatches( "ARIA attributes are translated", /* html */ `
CONTENT
` ); cleanup(); }); add_task(async function test_title_attribute_subnodes() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ `
Span text 1 Span text 2 Span text 3 Span text 4 Span text 5 This is text.
`); translate(); await htmlMatches( "Titles are translated", /* html */ `
SPAN TEXT 1 SPAN TEXT 2 SPAN TEXT 3 SPAN TEXT 4 SPAN TEXT 5 THIS IS TEXT.
` ); cleanup(); }); add_task(async function test_title_attribute_subnodes() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ `
Span text 1 Span text 2 Span text 3 Span text 4 Span text 5 This is text.
`); translate(); await htmlMatches( "Titles are translated", /* html */ `
SPAN TEXT 1 SPAN TEXT 2 SPAN TEXT 3 SPAN TEXT 4 SPAN TEXT 5 THIS IS TEXT.
` ); cleanup(); }); add_task(async function test_nested_text_in_attributes() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ `
This is the outer div
`); translate(); await htmlMatches( "translation for Nested with text", /* html */ `
THIS IS THE OUTER DIV
` ); cleanup(); }); add_task(async function test_attributes_with_nested_attributes() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ `
This is the outer div
`); translate(); await htmlMatches( "Translations: Nested Attributes", /* html */ `
THIS IS THE OUTER DIV
` ); cleanup(); }); add_task( async function test_notranslate_is_respected_for_attribute_translations() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ `
This is the outer div
`); translate(); await htmlMatches( "Translations: No-Translate for Attribute Translations", /* html */ `
This is the outer div
` ); cleanup(); } ); add_task(async function test_attribute_translation_for_input_elements() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ `
`); translate(); await htmlMatches( "Translations: Attribute Translation for elements", /* html */ `
` ); cleanup(); }); add_task(async function test_attribute_translation_for_area_elements() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ ` area_alt `); translate(); await htmlMatches( "Translations: Attribute Translation for elements", /* html */ ` AREA_ALT ` ); cleanup(); }); add_task( async function test_textarea_placeholder_translation_and_content_exclusion() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ ` `); translate(); await htmlMatches( "Only the placeholder is translated, not the content.", /* html */ ` ` ); cleanup(); } ); add_task(async function test_textarea_other_attributes_exclusion() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ ` `); translate(); await htmlMatches( "Only the placeholder is translated, not other attributes or content.", /* html */ ` ` ); cleanup(); }); add_task(async function test_textarea_with_translate_no() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ ` `); translate(); await htmlMatches( "Neither the placeholder nor the content is translated when translate='no'.", /* html */ ` ` ); cleanup(); }); add_task(async function test_textarea_placeholder_mutation() { const { translate, htmlMatches, cleanup, document } = await createTranslationsDoc(/* html */ ` `); translate(); await htmlMatches( "Initial placeholder is translated.", /* html */ ` ` ); info("Mutate the placeholder attribute."); document .querySelector("textarea") .setAttribute("placeholder", "New placeholder"); await htmlMatches( "The mutated placeholder is translated.", /* html */ ` ` ); cleanup(); }); add_task(async function test_translated_download_attributes() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ `
Link
`); translate(); await htmlMatches( "Download attributes are translated on and elements", /* html */ `
LINK
` ); cleanup(); }); add_task(async function test_attribute_translation_for_track_elements() { const { translate, htmlMatches, cleanup } = await createTranslationsDoc(/* html */ `
`); translate(); await htmlMatches( "Label attributes are translated on , , and