| Index: third_party/WebKit/Source/core/frame/UseCounterTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/UseCounterTest.cpp b/third_party/WebKit/Source/core/frame/UseCounterTest.cpp
|
| index eb9b0df90882e972f7fd1b5521cc63e9d9b7bcbf..6430ab4f97ed24ef0da20e91bed6d343524e50b8 100644
|
| --- a/third_party/WebKit/Source/core/frame/UseCounterTest.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/UseCounterTest.cpp
|
| @@ -187,7 +187,14 @@ TEST(UseCounterTest, RecordingCSSProperties) {
|
| histogramTester.expectTotalCount(kSVGCSSHistogramName, 0);
|
| }
|
|
|
| -TEST(UseCounterTest, SVGImageContext) {
|
| +// Failing on Android: crbug.com/667913
|
| +#if OS(ANDROID)
|
| +#define MAYBE_SVGImageContext DISABLED_SVGImageContext
|
| +#else
|
| +#define MAYBE_SVGImageContext SVGImageContext
|
| +#endif
|
| +
|
| +TEST(UseCounterTest, MAYBE_SVGImageContext) {
|
| UseCounter useCounter(UseCounter::SVGImageContext);
|
| HistogramTester histogramTester;
|
|
|
| @@ -236,6 +243,13 @@ TEST(UseCounterTest, SVGImageContext) {
|
| histogramTester.expectTotalCount(kFeaturesHistogramName, 0);
|
| }
|
|
|
| +// Failing on Android: crbug.com/667913
|
| +#if OS(ANDROID)
|
| +#define MAYBE_InspectorDisablesMeasurement DISABLED_InspectorDisablesMeasurement
|
| +#else
|
| +#define MAYBE_InspectorDisablesMeasurement InspectorDisablesMeasurement
|
| +#endif
|
| +
|
| TEST(UseCounterTest, InspectorDisablesMeasurement) {
|
| UseCounter useCounter;
|
| HistogramTester histogramTester;
|
|
|