From 9b3834764b26d0a806b72fdc3657075b7ab9c7c0 Mon Sep 17 00:00:00 2001 From: Kohei Yoshino Date: Mon, 8 Jan 2018 09:55:43 -0500 Subject: Bug 1428642 - Fix minor bugs on new global header * The magnifier icon on the search bar should not trigger search as reported in https://twitter.com/colinjoy/status/949035254949523457 * The search dropdown should show Saved Searches Edit link as suggested in my UX analysis * Remove the CSS transition on the More Tools button for consistency. I didn't add the transition; it's default style for buttons * Fix the position of the arrow/triangle on dropdown lists. An error of 1px. * Add `user-select: none;` to `#header` https://developer.mozilla.org/en-US/docs/Web/CSS/user select --- qa/t/test_shared_searches.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'qa/t/test_shared_searches.t') diff --git a/qa/t/test_shared_searches.t b/qa/t/test_shared_searches.t index 98237f756..a4b2ac9ce 100644 --- a/qa/t/test_shared_searches.t +++ b/qa/t/test_shared_searches.t @@ -23,7 +23,7 @@ set_parameters($sel, { "Group Security" => {"querysharegroup" => {type => "selec # Create new saved search and call it 'Shared Selenium buglist'. $sel->type_ok("quicksearch_top", ":TestProduct Selenium"); -$sel->click_ok("find_top"); +$sel->submit("header-search"); $sel->wait_for_page_to_load_ok(WAIT_TIME); $sel->title_like(qr/^Bug List:/); $sel->type_ok("save_newqueryname", "Shared Selenium buglist"); @@ -96,7 +96,7 @@ ok(!$sel->is_text_present("Shared Selenium buglist"), "Shared query no longer di # Create your own saved search, and share it with the canconfirm group. $sel->type_ok("quicksearch_top", ":TestProduct sw:helpwanted"); -$sel->click_ok("find_top"); +$sel->submit("header-search"); $sel->wait_for_page_to_load_ok(WAIT_TIME); $sel->title_like(qr/^Bug List:/); $sel->type_ok("save_newqueryname", "helpwanted"); -- cgit v1.2.3-24-g4f1b