mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1074836 - 6 - Fix the inspector search field test with e10s; r=jwalker
This commit is contained in:
parent
6d2e123f8f
commit
bb69a89b03
@ -70,10 +70,12 @@ add_task(function* () {
|
||||
info("Got " + event + " event. Waiting for search query to complete");
|
||||
yield inspector.searchSuggestions._lastQuery;
|
||||
|
||||
info(inspector.selection.node.id + " is selected with text " +
|
||||
info(inspector.selection.nodeFront.id + " is selected with text " +
|
||||
searchBox.value);
|
||||
is(inspector.selection.node, content.document.getElementById(id),
|
||||
let nodeFront = yield getNodeFront("#" + id, inspector);
|
||||
is(inspector.selection.nodeFront, nodeFront,
|
||||
"Correct node is selected for state " + index);
|
||||
|
||||
is(!searchBox.classList.contains("devtools-no-search-result"), isValid,
|
||||
"Correct searchbox result state for state " + index);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user