/* Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ */ "use strict"; // Bug 1295081 Test searchbox clear button's display behavior is correct const XHTML = ` `; const TEST_URI = "data:application/xhtml+xml;charset=utf-8," + encodeURI(XHTML); // Type "d" in inspector-searchbox, Enter [Back space] key and check if the // clear button is shown correctly add_task(async function () { const { inspector } = await openInspectorForURL(TEST_URI); const { searchBox, searchClearButton } = inspector; await focusSearchBoxUsingShortcut(inspector.panelWin); info("Type d and the clear button will be shown"); const command = once(searchBox, "input"); let onSearchProcessingDone = inspector.searchSuggestions.once("processing-done"); EventUtils.synthesizeKey("c", {}, inspector.panelWin); await command; info("Waiting for search query to complete and getting the suggestions"); await onSearchProcessingDone; ok( !searchClearButton.hidden, "The clear button is shown when some word is in searchBox" ); onSearchProcessingDone = inspector.searchSuggestions.once("processing-done"); EventUtils.synthesizeKey("VK_BACK_SPACE", {}, inspector.panelWin); await command; info("Waiting for search query to complete and getting the suggestions"); await onSearchProcessingDone; ok( searchClearButton.hidden, "The clear button is hidden when no word is in searchBox" ); });