| Index: tools/perf/benchmarks/smoothness.py
|
| diff --git a/tools/perf/benchmarks/smoothness.py b/tools/perf/benchmarks/smoothness.py
|
| index 3a82f439c95dfa9b57cdaf4e35be83b38575bbb6..e8e79c8769d0e794210a373c0a391de41ce1ee1c 100644
|
| --- a/tools/perf/benchmarks/smoothness.py
|
| +++ b/tools/perf/benchmarks/smoothness.py
|
| @@ -296,7 +296,11 @@ class SmoothnessToughPinchZoomCases(_Smoothness):
|
|
|
| @classmethod
|
| def ShouldDisable(cls, possible_browser):
|
| - return cls.IsSvelte(possible_browser) # http://crbug.com/564008
|
| + return (
|
| + # http://crbug.com/564008
|
| + cls.IsSvelte(possible_browser) or
|
| + # http://crbug.com/630701
|
| + possible_browser.platform.GetDeviceTypeName() == 'Nexus 5X')
|
|
|
|
|
| @benchmark.Enabled('mac')
|
|
|