Index: tools/perf/benchmarks/smoothness.py |
diff --git a/tools/perf/benchmarks/smoothness.py b/tools/perf/benchmarks/smoothness.py |
index 3a82f439c95dfa9b57cdaf4e35be83b38575bbb6..64530b6aee1cb04a11c076844be87e2ecdee765e 100644 |
--- a/tools/perf/benchmarks/smoothness.py |
+++ b/tools/perf/benchmarks/smoothness.py |
@@ -296,7 +296,9 @@ class SmoothnessToughPinchZoomCases(_Smoothness): |
@classmethod |
def ShouldDisable(cls, possible_browser): |
- return cls.IsSvelte(possible_browser) # http://crbug.com/564008 |
+ # http://crbug.com/564008, # http://crbug.com/630701 |
+ return (cls.IsSvelte(possible_browser) |
nednguyen
2016/07/22 19:15:31
nits: can you reformat this so that it looks like:
eyaich
2016/07/22 19:19:34
Done.
|
+ or possible_browser.platform.GetDeviceTypeName() == 'Nexus 5X') |
@benchmark.Enabled('mac') |