| Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base.py
|
| index cfb9b06c59f6ea6141a4c48265e7fb8031803ca6..03246f1c73adafcbe176d7bb78cc3be159816565 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base.py
|
| @@ -749,6 +749,9 @@ class Port(object):
|
| @memoized
|
| def _wpt_manifest(self):
|
| manifest_path = self._filesystem.join(self.layout_tests_dir(), 'external', 'wpt', 'MANIFEST.json')
|
| + if not self._filesystem.exists(manifest_path):
|
| + _log.error('Manifest not found at %s. See http://crbug.com/698294', manifest_path)
|
| + return WPTManifest('{}')
|
| return WPTManifest(self._filesystem.read_text_file(manifest_path))
|
|
|
| def is_slow_wpt_test(self, test_file):
|
|
|