Commit f6fa5f43 authored by Alex Moshchuk's avatar Alex Moshchuk Committed by Commit Bot

Revert "[omnibox] Add tests for dedicated row and pedals a11y"

This reverts commit 4dfbdf6a.

Reason for revert: The EmitAccessibilityEventsOnButtonFocusHint test that's modified here is failing on Mac10.11:
https://ci.chromium.org/p/chromium/builders/ci/Mac10.11%20Tests/53696

Failure output:
[ RUN      ] All/OmniboxPopupContentsViewTest.EmitAccessibilityEventsOnButtonFocusHint/1
[26756:3843:0819/131719.560091:WARNING:notification_platform_bridge_mac.mm(572)] AlertNotificationService: XPC connection invalidated.
../../chrome/browser/ui/views/omnibox/omnibox_popup_contents_view_browsertest.cc:163: Failure
Value of: contains(omnibox_value(), expected_value)
  Actual: false
Expected: true
Google Test trace:
../../chrome/browser/ui/views/omnibox/omnibox_popup_contents_view_browsertest.cc:162: Omnibox value (foo/, 2 of 3) is expected to contain "The Foo Of All Bars"
Stack trace:
0   browser_tests                       0x00000001072bee49 (anonymous namespace)::TestAXEventObserver::CheckOmniboxValue(std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >) + 825
1   browser_tests                       0x00000001072bda50 OmniboxPopupContentsViewTest_EmitAccessibilityEventsOnButtonFocusHint_Test::RunTestOnMainThread() + 640
2   browser_tests                       0x000000010c21394d content::BrowserTestBase::ProxyRunTestOnMainThreadLoop() + 717

Original change's description:
> [omnibox] Add tests for dedicated row and pedals a11y
> 
> Added tests for keyword button, pedal button, remove suggestion button,
> multiple buttons for one suggestion (tab switch and keyword button).
> Cleaned up tests.
> 
> Fixed a11y for remove suggestion button and buttons in dedicated row
> (set role to be list box option and set correct accessible name).
> Fixed selection event not being triggered for dedicated row buttons
> (GetSecondaryButton wasn't returning buttons from dedicated row).
> Fixed value changed event triggering extra time when switching selection
> from button to button.
> 
> Bug: 1104264
> Change-Id: I0c7a7a9cee0622cce2a24f6ea58c73a56ac996bc
> Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2352826
> Commit-Queue: Olesia Marukhno <olesiamarukhno@google.com>
> Reviewed-by: Bret Sepulveda <bsep@chromium.org>
> Reviewed-by: Tommy Li <tommycli@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#799723}

TBR=tommycli@chromium.org,bsep@chromium.org,olesiamarukhno@google.com

Change-Id: I97466a40db517ef10dc138ebbea1a0d8569e0a3e
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: 1104264
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2364961Reviewed-by: default avatarAlex Moshchuk <alexmos@chromium.org>
Commit-Queue: Alex Moshchuk <alexmos@chromium.org>
Cr-Commit-Position: refs/heads/master@{#799799}
parent 66870c32
...@@ -45,26 +45,6 @@ ...@@ -45,26 +45,6 @@
#include "base/win/atl.h" #include "base/win/atl.h"
#endif #endif
namespace {
class OmniboxRemoveSuggestionButton : public views::ImageButton {
public:
explicit OmniboxRemoveSuggestionButton(views::ButtonListener* listener)
: ImageButton(listener) {
views::ConfigureVectorImageButton(this);
}
void GetAccessibleNodeData(ui::AXNodeData* node_data) override {
node_data->SetName(
l10n_util::GetStringUTF16(IDS_ACC_REMOVE_SUGGESTION_BUTTON));
// Although this appears visually as a button, expose as a list box option
// so that it matches the other options within its list box container.
node_data->role = ax::mojom::Role::kListBoxOption;
}
};
} // namespace
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// OmniboxResultView, public: // OmniboxResultView, public:
...@@ -92,7 +72,7 @@ OmniboxResultView::OmniboxResultView( ...@@ -92,7 +72,7 @@ OmniboxResultView::OmniboxResultView(
// TODO(tommycli): Make sure we announce the Shift+Delete capability in the // TODO(tommycli): Make sure we announce the Shift+Delete capability in the
// accessibility node data for removable suggestions. // accessibility node data for removable suggestions.
remove_suggestion_button_ = remove_suggestion_button_ =
AddChildView(std::make_unique<OmniboxRemoveSuggestionButton>(this)); AddChildView(views::CreateVectorImageButton(this));
views::InstallCircleHighlightPathGenerator(remove_suggestion_button_); views::InstallCircleHighlightPathGenerator(remove_suggestion_button_);
remove_suggestion_button_->SetTooltipText( remove_suggestion_button_->SetTooltipText(
l10n_util::GetStringUTF16(IDS_OMNIBOX_REMOVE_SUGGESTION)); l10n_util::GetStringUTF16(IDS_OMNIBOX_REMOVE_SUGGESTION));
...@@ -293,10 +273,6 @@ views::Button* OmniboxResultView::GetSecondaryButton() { ...@@ -293,10 +273,6 @@ views::Button* OmniboxResultView::GetSecondaryButton() {
if (remove_suggestion_button_->GetVisible()) if (remove_suggestion_button_->GetVisible())
return remove_suggestion_button_; return remove_suggestion_button_;
if (OmniboxFieldTrial::IsSuggestionButtonRowEnabled()) {
return button_row_->GetActiveButton();
}
return nullptr; return nullptr;
} }
......
...@@ -17,11 +17,9 @@ ...@@ -17,11 +17,9 @@
#include "components/strings/grit/components_strings.h" #include "components/strings/grit/components_strings.h"
#include "components/vector_icons/vector_icons.h" #include "components/vector_icons/vector_icons.h"
#include "third_party/metrics_proto/omnibox_event.pb.h" #include "third_party/metrics_proto/omnibox_event.pb.h"
#include "ui/accessibility/ax_node_data.h"
#include "ui/base/l10n/l10n_util.h" #include "ui/base/l10n/l10n_util.h"
#include "ui/gfx/color_utils.h" #include "ui/gfx/color_utils.h"
#include "ui/gfx/paint_vector_icon.h" #include "ui/gfx/paint_vector_icon.h"
#include "ui/views/accessibility/view_accessibility.h"
#include "ui/views/animation/ink_drop_highlight.h" #include "ui/views/animation/ink_drop_highlight.h"
#include "ui/views/background.h" #include "ui/views/background.h"
#include "ui/views/controls/button/label_button_border.h" #include "ui/views/controls/button/label_button_border.h"
...@@ -35,12 +33,8 @@ class OmniboxSuggestionRowButton : public views::MdTextButton { ...@@ -35,12 +33,8 @@ class OmniboxSuggestionRowButton : public views::MdTextButton {
OmniboxSuggestionRowButton(views::ButtonListener* listener, OmniboxSuggestionRowButton(views::ButtonListener* listener,
const base::string16& text, const base::string16& text,
const gfx::VectorIcon& icon, const gfx::VectorIcon& icon,
OmniboxPopupContentsView* popup_contents_view, const views::FocusRing::ViewPredicate& predicate)
OmniboxPopupModel::Selection selection) : MdTextButton(listener, text, CONTEXT_OMNIBOX_PRIMARY), icon_(icon) {
: MdTextButton(listener, text, CONTEXT_OMNIBOX_PRIMARY),
icon_(icon),
popup_contents_view_(popup_contents_view),
selection_(selection) {
views::InstallPillHighlightPathGenerator(this); views::InstallPillHighlightPathGenerator(this);
SetImageLabelSpacing(ChromeLayoutProvider::Get()->GetDistanceMetric( SetImageLabelSpacing(ChromeLayoutProvider::Get()->GetDistanceMetric(
DISTANCE_RELATED_LABEL_HORIZONTAL_LIST)); DISTANCE_RELATED_LABEL_HORIZONTAL_LIST));
...@@ -50,10 +44,7 @@ class OmniboxSuggestionRowButton : public views::MdTextButton { ...@@ -50,10 +44,7 @@ class OmniboxSuggestionRowButton : public views::MdTextButton {
GetLayoutConstant(LOCATION_BAR_ICON_SIZE)); GetLayoutConstant(LOCATION_BAR_ICON_SIZE));
set_ink_drop_highlight_opacity(CalculateInkDropHighlightOpacity()); set_ink_drop_highlight_opacity(CalculateInkDropHighlightOpacity());
focus_ring()->SetHasFocusPredicate([=](View* view) { focus_ring()->SetHasFocusPredicate(predicate);
return view->GetVisible() &&
popup_contents_view_->model()->selection() == selection_;
});
} }
OmniboxSuggestionRowButton(const OmniboxSuggestionRowButton&) = delete; OmniboxSuggestionRowButton(const OmniboxSuggestionRowButton&) = delete;
...@@ -68,8 +59,6 @@ class OmniboxSuggestionRowButton : public views::MdTextButton { ...@@ -68,8 +59,6 @@ class OmniboxSuggestionRowButton : public views::MdTextButton {
void OnStyleRefresh() { focus_ring()->SchedulePaint(); } void OnStyleRefresh() { focus_ring()->SchedulePaint(); }
OmniboxPopupModel::Selection selection() { return selection_; }
std::unique_ptr<views::InkDropHighlight> CreateInkDropHighlight() std::unique_ptr<views::InkDropHighlight> CreateInkDropHighlight()
const override { const override {
// MdTextButton uses custom colors when creating ink drop highlight. // MdTextButton uses custom colors when creating ink drop highlight.
...@@ -88,17 +77,8 @@ class OmniboxSuggestionRowButton : public views::MdTextButton { ...@@ -88,17 +77,8 @@ class OmniboxSuggestionRowButton : public views::MdTextButton {
icon_, GetLayoutConstant(LOCATION_BAR_ICON_SIZE), color)); icon_, GetLayoutConstant(LOCATION_BAR_ICON_SIZE), color));
} }
void GetAccessibleNodeData(ui::AXNodeData* node_data) override {
node_data->SetName(GetAccessibleName());
// Although this appears visually as a button, expose as a list box option
// so that it matches the other options within its list box container.
node_data->role = ax::mojom::Role::kListBoxOption;
}
private: private:
const gfx::VectorIcon& icon_; const gfx::VectorIcon& icon_;
OmniboxPopupContentsView* popup_contents_view_;
OmniboxPopupModel::Selection selection_;
float CalculateInkDropHighlightOpacity() { float CalculateInkDropHighlightOpacity() {
// Ink drop highlight opacity is result of mixing a layer with hovered // Ink drop highlight opacity is result of mixing a layer with hovered
...@@ -129,27 +109,30 @@ OmniboxSuggestionButtonRowView::OmniboxSuggestionButtonRowView( ...@@ -129,27 +109,30 @@ OmniboxSuggestionButtonRowView::OmniboxSuggestionButtonRowView(
gfx::Insets(0, ChromeLayoutProvider::Get()->GetDistanceMetric( gfx::Insets(0, ChromeLayoutProvider::Get()->GetDistanceMetric(
views::DISTANCE_RELATED_BUTTON_HORIZONTAL))); views::DISTANCE_RELATED_BUTTON_HORIZONTAL)));
const auto make_predicate = [=](auto state) {
return [=](View* view) {
return view->GetVisible() &&
model()->selection() ==
OmniboxPopupModel::Selection(model_index_, state);
};
};
// For all of these buttons, the visibility set from UpdateFromModel(). // For all of these buttons, the visibility set from UpdateFromModel().
// The Keyword and Pedal buttons also get their text from there, since the // The Keyword and Pedal buttons also get their text from there, since the
// text depends on the actual match. That shouldn't produce a flicker, because // text depends on the actual match. That shouldn't produce a flicker, because
// it's called directly from OmniboxResultView::SetMatch(). If this flickers, // it's called directly from OmniboxResultView::SetMatch(). If this flickers,
// then so does everything else in the result view. // then so does everything else in the result view.
keyword_button_ = AddChildView(std::make_unique<OmniboxSuggestionRowButton>( keyword_button_ = AddChildView(std::make_unique<OmniboxSuggestionRowButton>(
this, base::string16(), vector_icons::kSearchIcon, popup_contents_view_, this, base::string16(), vector_icons::kSearchIcon,
OmniboxPopupModel::Selection(model_index_, make_predicate(OmniboxPopupModel::FOCUSED_BUTTON_KEYWORD)));
OmniboxPopupModel::FOCUSED_BUTTON_KEYWORD)));
tab_switch_button_ = tab_switch_button_ =
AddChildView(std::make_unique<OmniboxSuggestionRowButton>( AddChildView(std::make_unique<OmniboxSuggestionRowButton>(
this, l10n_util::GetStringUTF16(IDS_OMNIBOX_TAB_SUGGEST_HINT), this, l10n_util::GetStringUTF16(IDS_OMNIBOX_TAB_SUGGEST_HINT),
omnibox::kSwitchIcon, popup_contents_view_, omnibox::kSwitchIcon,
OmniboxPopupModel::Selection( make_predicate(OmniboxPopupModel::FOCUSED_BUTTON_TAB_SWITCH)));
model_index_, OmniboxPopupModel::FOCUSED_BUTTON_TAB_SWITCH)));
tab_switch_button_->SetAccessibleName(
l10n_util::GetStringUTF16(IDS_ACC_TAB_SWITCH_BUTTON));
pedal_button_ = AddChildView(std::make_unique<OmniboxSuggestionRowButton>( pedal_button_ = AddChildView(std::make_unique<OmniboxSuggestionRowButton>(
this, base::string16(), omnibox::kProductIcon, popup_contents_view_, this, base::string16(), omnibox::kProductIcon,
OmniboxPopupModel::Selection(model_index_, make_predicate(OmniboxPopupModel::FOCUSED_BUTTON_PEDAL)));
OmniboxPopupModel::FOCUSED_BUTTON_PEDAL)));
} }
OmniboxSuggestionButtonRowView::~OmniboxSuggestionButtonRowView() = default; OmniboxSuggestionButtonRowView::~OmniboxSuggestionButtonRowView() = default;
...@@ -167,17 +150,14 @@ void OmniboxSuggestionButtonRowView::UpdateFromModel() { ...@@ -167,17 +150,14 @@ void OmniboxSuggestionButtonRowView::UpdateFromModel() {
const auto names = SelectedKeywordView::GetKeywordLabelNames( const auto names = SelectedKeywordView::GetKeywordLabelNames(
keyword, edit_model->client()->GetTemplateURLService()); keyword, edit_model->client()->GetTemplateURLService());
keyword_button_->SetText(names.full_name); keyword_button_->SetText(names.full_name);
keyword_button_->SetAccessibleName(
l10n_util::GetStringFUTF16(IDS_ACC_KEYWORD_BUTTON, names.short_name));
} }
SetPillButtonVisibility(pedal_button_, SetPillButtonVisibility(pedal_button_,
OmniboxPopupModel::FOCUSED_BUTTON_PEDAL); OmniboxPopupModel::FOCUSED_BUTTON_PEDAL);
if (pedal_button_->GetVisible()) { if (pedal_button_->GetVisible()) {
const auto pedal_strings = match().pedal->GetLabelStrings(); pedal_button_->SetText(match().pedal->GetLabelStrings().hint);
pedal_button_->SetText(pedal_strings.hint); pedal_button_->SetTooltipText(
pedal_button_->SetTooltipText(pedal_strings.suggestion_contents); match().pedal->GetLabelStrings().suggestion_contents);
pedal_button_->SetAccessibleName(pedal_strings.accessibility_hint);
} }
SetPillButtonVisibility(tab_switch_button_, SetPillButtonVisibility(tab_switch_button_,
...@@ -230,28 +210,6 @@ void OmniboxSuggestionButtonRowView::ButtonPressed(views::Button* button, ...@@ -230,28 +210,6 @@ void OmniboxSuggestionButtonRowView::ButtonPressed(views::Button* button,
} }
} }
views::Button* OmniboxSuggestionButtonRowView::GetActiveButton() const {
std::vector<OmniboxSuggestionRowButton*> visible_buttons;
if (keyword_button_->GetVisible())
visible_buttons.push_back(keyword_button_);
if (tab_switch_button_->GetVisible())
visible_buttons.push_back(tab_switch_button_);
if (pedal_button_->GetVisible())
visible_buttons.push_back(pedal_button_);
if (visible_buttons.empty())
return nullptr;
// Find first visible button that matches model selection.
auto selected_button =
std::find_if(visible_buttons.begin(), visible_buttons.end(),
[=](OmniboxSuggestionRowButton* button) {
return model()->selection() == button->selection();
});
return selected_button == visible_buttons.end() ? visible_buttons.front()
: *selected_button;
}
const OmniboxPopupModel* OmniboxSuggestionButtonRowView::model() const { const OmniboxPopupModel* OmniboxSuggestionButtonRowView::model() const {
return popup_contents_view_->model(); return popup_contents_view_->model();
} }
......
...@@ -32,8 +32,6 @@ class OmniboxSuggestionButtonRowView : public views::View, ...@@ -32,8 +32,6 @@ class OmniboxSuggestionButtonRowView : public views::View,
// views::ButtonListener: // views::ButtonListener:
void ButtonPressed(views::Button* sender, const ui::Event& event) override; void ButtonPressed(views::Button* sender, const ui::Event& event) override;
views::Button* GetActiveButton() const;
private: private:
// Get the popup model from the view. // Get the popup model from the view.
const OmniboxPopupModel* model() const; const OmniboxPopupModel* model() const;
......
...@@ -177,6 +177,10 @@ class AutocompleteController : public AutocompleteProviderListener, ...@@ -177,6 +177,10 @@ class AutocompleteController : public AutocompleteProviderListener,
FRIEND_TEST_ALL_PREFIXES(AutocompleteProviderTest, FRIEND_TEST_ALL_PREFIXES(AutocompleteProviderTest,
RedundantKeywordsIgnoredInResult); RedundantKeywordsIgnoredInResult);
FRIEND_TEST_ALL_PREFIXES(AutocompleteProviderTest, UpdateAssistedQueryStats); FRIEND_TEST_ALL_PREFIXES(AutocompleteProviderTest, UpdateAssistedQueryStats);
FRIEND_TEST_ALL_PREFIXES(OmniboxPopupContentsViewTest,
EmitAccessibilityEvents);
FRIEND_TEST_ALL_PREFIXES(OmniboxPopupContentsViewTest,
EmitAccessibilityEventsOnButtonFocusHint);
FRIEND_TEST_ALL_PREFIXES(OmniboxViewTest, DoesNotUpdateAutocompleteOnBlur); FRIEND_TEST_ALL_PREFIXES(OmniboxViewTest, DoesNotUpdateAutocompleteOnBlur);
FRIEND_TEST_ALL_PREFIXES(OmniboxViewViewsTest, CloseOmniboxPopupOnTextDrag); FRIEND_TEST_ALL_PREFIXES(OmniboxViewViewsTest, CloseOmniboxPopupOnTextDrag);
FRIEND_TEST_ALL_PREFIXES(OmniboxViewViewsTest, FriendlyAccessibleLabel); FRIEND_TEST_ALL_PREFIXES(OmniboxViewViewsTest, FriendlyAccessibleLabel);
...@@ -201,7 +205,6 @@ class AutocompleteController : public AutocompleteProviderListener, ...@@ -201,7 +205,6 @@ class AutocompleteController : public AutocompleteProviderListener,
PopupStepSelectionWithButtonRowAndKeywordButton); PopupStepSelectionWithButtonRowAndKeywordButton);
FRIEND_TEST_ALL_PREFIXES(OmniboxPopupContentsViewTest, FRIEND_TEST_ALL_PREFIXES(OmniboxPopupContentsViewTest,
EmitSelectedChildrenChangedAccessibilityEvent); EmitSelectedChildrenChangedAccessibilityEvent);
friend class OmniboxPopupContentsViewTest;
// Updates |result_| to reflect the current provider state and fires // Updates |result_| to reflect the current provider state and fires
// notifications. If |regenerate_result| then we clear the result // notifications. If |regenerate_result| then we clear the result
......
...@@ -181,7 +181,6 @@ void OmniboxPopupModel::SetSelection(Selection new_selection, ...@@ -181,7 +181,6 @@ void OmniboxPopupModel::SetSelection(Selection new_selection,
base::string16()); base::string16());
} else if (old_selection.line != selection_.line || } else if (old_selection.line != selection_.line ||
(old_selection.IsButtonFocused() && (old_selection.IsButtonFocused() &&
!new_selection.IsButtonFocused() &&
new_selection.state != KEYWORD_MODE)) { new_selection.state != KEYWORD_MODE)) {
// Otherwise, only update the edit model for line number changes, or // Otherwise, only update the edit model for line number changes, or
// when the old selection was a button and we're not entering keyword mode. // when the old selection was a button and we're not entering keyword mode.
......
...@@ -121,10 +121,8 @@ ...@@ -121,10 +121,8 @@
-NtpExtensionBubbleViewBrowserTest.InvokeUi_ntp_override -NtpExtensionBubbleViewBrowserTest.InvokeUi_ntp_override
-NtpExtensionBubbleViewBrowserTest.TestControlledNewTabPageMessageBubble -NtpExtensionBubbleViewBrowserTest.TestControlledNewTabPageMessageBubble
-NtpExtensionBubbleViewBrowserTest.TestControlledNewTabPageMessageBubbleLearnMore -NtpExtensionBubbleViewBrowserTest.TestControlledNewTabPageMessageBubbleLearnMore
-All/OmniboxPopupContentsViewTest.ClickOmnibox/0 -OmniboxPopupContentsViewTest.ClickOmnibox
-All/OmniboxPopupContentsViewTest.ClickOmnibox/1 -OmniboxPopupContentsViewTest.PopupMatchesLocationBarBackground
-All/OmniboxPopupContentsViewTest.PopupMatchesLocationBarBackground/0
-All/OmniboxPopupContentsViewTest.PopupMatchesLocationBarBackground/1
-OutOfProcessPPAPITest.FlashClipboard -OutOfProcessPPAPITest.FlashClipboard
-OutOfProcessPPAPITest.NetAddress -OutOfProcessPPAPITest.NetAddress
-OutOfProcessPPAPITest.Printing -OutOfProcessPPAPITest.Printing
......
...@@ -13,10 +13,8 @@ ...@@ -13,10 +13,8 @@
-ExtensionDialogTest.TextInputViaKeyEvent -ExtensionDialogTest.TextInputViaKeyEvent
-ExternalProtocolDialogBrowserTest.TestFocus -ExternalProtocolDialogBrowserTest.TestFocus
-FolderUploadConfirmationViewTest.InitiallyFocusesCancel -FolderUploadConfirmationViewTest.InitiallyFocusesCancel
-All/OmniboxPopupContentsViewTest.ClickOmnibox/0 -OmniboxPopupContentsViewTest.ClickOmnibox
-All/OmniboxPopupContentsViewTest.ClickOmnibox/1 -OmniboxPopupContentsViewTest.PopupMatchesLocationBarBackground
-All/OmniboxPopupContentsViewTest.PopupMatchesLocationBarBackground/0
-All/OmniboxPopupContentsViewTest.PopupMatchesLocationBarBackground/1
-OutOfProcessPPAPITest.FlashClipboard -OutOfProcessPPAPITest.FlashClipboard
-PPAPINaClNewlibTest.TrueTypeFont -PPAPINaClNewlibTest.TrueTypeFont
-PPAPINaClPNaClNonSfiTest.TrueTypeFont -PPAPINaClPNaClNonSfiTest.TrueTypeFont
......
...@@ -15,8 +15,7 @@ ...@@ -15,8 +15,7 @@
-AutofillProviderBrowserTestWithSkipFlagOn.LabelTagChangeImpactFormComparing -AutofillProviderBrowserTestWithSkipFlagOn.LabelTagChangeImpactFormComparing
-ExecuteScriptApiTest/DestructiveScriptTest.SynchronousRemoval/0 -ExecuteScriptApiTest/DestructiveScriptTest.SynchronousRemoval/0
-ExtensionInstallDialogViewTest.InstallButtonDelay -ExtensionInstallDialogViewTest.InstallButtonDelay
-All/OmniboxPopupContentsViewTest.ClickOmnibox/0 -OmniboxPopupContentsViewTest.ClickOmnibox
-All/OmniboxPopupContentsViewTest.ClickOmnibox/1
-PageInfoBubbleViewBrowserTest.FocusDoesNotReturnToContentsOnReloadPrompt -PageInfoBubbleViewBrowserTest.FocusDoesNotReturnToContentsOnReloadPrompt
-PaymentRequestCreditCardEditorTest.EditingExpiredCard -PaymentRequestCreditCardEditorTest.EditingExpiredCard
-PaymentRequestShippingAddressEditorTest.FocusFirstField_Name -PaymentRequestShippingAddressEditorTest.FocusFirstField_Name
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment