| Index: third_party/WebKit/Source/core/layout/ng/ng_text_layout_algorithm_test.cc
|
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_text_layout_algorithm_test.cc b/third_party/WebKit/Source/core/layout/ng/ng_text_layout_algorithm_test.cc
|
| index 242428fdbffa9f53f920273935754cbb61b59664..cfabfcc8f2c4bc1d16a60dad88c6d0eb8dd2f3b5 100644
|
| --- a/third_party/WebKit/Source/core/layout/ng/ng_text_layout_algorithm_test.cc
|
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_text_layout_algorithm_test.cc
|
| @@ -18,7 +18,13 @@ class NGTextLayoutAlgorithmTest : public NGBaseLayoutAlgorithmTest {};
|
|
|
| // Verifies that text can flow correctly around floats that were positioned
|
| // before the inline block.
|
| -TEST_F(NGTextLayoutAlgorithmTest, TextFloatsAroundFloatsBefore) {
|
| +// Failing on Android: crbug.com/700868
|
| +#if OS(ANDROID)
|
| +#define MAYBE_TextFloatsAroundFloatsBefore DISABLED_TextFloatsAroundFloatsBefore
|
| +#else
|
| +#define MAYBE_TextFloatsAroundFloatsBefore TextFloatsAroundFloatsBefore
|
| +#endif
|
| +TEST_F(NGTextLayoutAlgorithmTest, MAYBE_TextFloatsAroundFloatsBefore) {
|
| setBodyInnerHTML(R"HTML(
|
| <!DOCTYPE html>
|
| <style>
|
|
|