| Index: tools/chrome_proxy/webdriver/lofi.py | 
| diff --git a/tools/chrome_proxy/webdriver/lofi.py b/tools/chrome_proxy/webdriver/lofi.py | 
| index 08a5cff9b94c034c3f0e4207690555a467a34df4..88cd1d8e91583593b7e44f5574aecd28f4bef1fa 100644 | 
| --- a/tools/chrome_proxy/webdriver/lofi.py | 
| +++ b/tools/chrome_proxy/webdriver/lofi.py | 
| @@ -5,6 +5,7 @@ | 
| import common | 
| from common import TestDriver | 
| from common import IntegrationTest | 
| +from decorators import ChromeVersionBeforeM | 
|  | 
|  | 
| class LoFi(IntegrationTest): | 
| @@ -68,6 +69,8 @@ class LoFi(IntegrationTest): | 
| # Checks that LoFi images are not served, but the if-heavy CPAT header is | 
| # added when LoFi slow connections are used and the network quality estimator | 
| # returns 4G. | 
| +  # If-heavy stopped being added in M61. | 
| +  @ChromeVersionBeforeM(61) | 
| def testLoFiIfHeavyFastConnection(self): | 
| with TestDriver() as test_driver: | 
| test_driver.AddChromeArg('--enable-spdy-proxy-auth') | 
|  |