| Index: third_party/WebKit/Source/core/html/HTMLTextFormControlElementTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLTextFormControlElementTest.cpp b/third_party/WebKit/Source/core/html/HTMLTextFormControlElementTest.cpp
|
| index f2ad8b49c796694e104ba9dc5a7826f853ee4d0d..22cce6cf1c0c7c8d132357fa88e14345c3c46e4d 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLTextFormControlElementTest.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLTextFormControlElementTest.cpp
|
| @@ -168,7 +168,13 @@ void testBoundary(HTMLDocument& document, HTMLTextFormControlElement& textContro
|
| }
|
| }
|
|
|
| -TEST_F(HTMLTextFormControlElementTest, WordAndSentenceBoundary)
|
| +// Flakily failing under MAC ASAN. See https://crbug.com/592880.
|
| +#if OS(MACOSX) && defined(ADDRESS_SANITIZER)
|
| +#define MAYBE_WordAndSentenceBoundary DISABLED_WordAndSentenceBoundary
|
| +#else
|
| +#define MAYBE_WordAndSentenceBoundary WordAndSentenceBoundary
|
| +#endif
|
| +TEST_F(HTMLTextFormControlElementTest, MAYBE_WordAndSentenceBoundary)
|
| {
|
| HTMLElement* innerText = textControl().innerEditorElement();
|
| {
|
|
|