| 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 8fd5e53b3c66bc7a8f22b686cd894fb658294217..ff26519d75795198760fd2aa138f0d0a6bef5844 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
|
| @@ -728,7 +728,7 @@ class Port(object):
|
| else:
|
| path_in_wpt = filename
|
| return self._wpt_manifest().is_test_file(path_in_wpt)
|
| - if 'inspector-unit' in dirname:
|
| + if 'inspector-unit' in dirname or 'inspector-protocol-2' in dirname:
|
| return filesystem.splitext(filename)[1] == '.js'
|
| return Port._has_supported_extension(
|
| filesystem, filename) and not Port.is_reference_html_file(filesystem, dirname, filename)
|
|
|