| 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 3642c8ab839e53f6dad8ea5b5e0500895b49a11f..ea986237f757197a2b7283a7bb44168e524a8ca5 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
|
| @@ -1484,10 +1484,12 @@ class Port(object):
|
| pass
|
|
|
| def physical_test_suites(self):
|
| + color_correct_rendering_flags = ['--enable-color-correct-rendering', '--force-color-profile=srgb']
|
| return [
|
| # For example, to turn on force-compositing-mode in the svg/ directory:
|
| # PhysicalTestSuite('svg', ['--force-compositing-mode']),
|
| PhysicalTestSuite('fast/text', ['--enable-direct-write', '--enable-font-antialiasing']),
|
| + PhysicalTestSuite('images', color_correct_rendering_flags),
|
| ]
|
|
|
| def virtual_test_suites(self):
|
|
|