Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(364)

Unified Diff: Tools/Scripts/webkitpy/layout_tests/port/base.py

Issue 1195953002: Enable slimming paint for all layout tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: NeedsRebaseline Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Tools/Scripts/webkitpy/layout_tests/port/base.py
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/base.py b/Tools/Scripts/webkitpy/layout_tests/port/base.py
index f75092bf3856c35b9e4021f8560d02a76d0e6eeb..8cd2a119d7ad2bc24395119909ad50a0a056c120 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/base.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/base.py
@@ -224,7 +224,9 @@ class Port(object):
def additional_driver_flag(self):
if self.driver_name() == self.CONTENT_SHELL_NAME:
- return ['--run-layout-test', '--disable-slimming-paint']
+ # TODO(wangxianzhu): Remove --enable-slimming-paint when we enable
+ # it by default.
+ return ['--run-layout-test', '--enable-slimming-paint']
return []
def supports_per_test_timeout(self):
@@ -1569,23 +1571,7 @@ class Port(object):
def physical_test_suites(self):
return [
# For example, to turn on force-compositing-mode in the svg/ directory:
- # PhysicalTestSuite('svg',
- # ['--force-compositing-mode']),
- PhysicalTestSuite('compositing', ['--enable-slimming-paint']),
- PhysicalTestSuite('css1', ['--enable-slimming-paint']),
- PhysicalTestSuite('css2.1', ['--enable-slimming-paint']),
- PhysicalTestSuite('css3', ['--enable-slimming-paint']),
- PhysicalTestSuite('editing', ['--enable-slimming-paint']),
- PhysicalTestSuite('fast', ['--enable-slimming-paint']),
- PhysicalTestSuite('media', ['--enable-slimming-paint']),
- PhysicalTestSuite('paint', ['--enable-slimming-paint']),
- PhysicalTestSuite('plugins', ['--enable-slimming-paint']),
- PhysicalTestSuite('printing', ['--enable-slimming-paint']),
- PhysicalTestSuite('scrollbars', ['--enable-slimming-paint']),
- PhysicalTestSuite('selection', ['--enable-slimming-paint']),
- PhysicalTestSuite('svg', ['--enable-slimming-paint']),
- PhysicalTestSuite('tables', ['--enable-slimming-paint']),
- PhysicalTestSuite('transforms', ['--enable-slimming-paint']),
+ # PhysicalTestSuite('svg', ['--force-compositing-mode']),
]
def virtual_test_suites(self):
« no previous file with comments | « Tools/Scripts/webkitpy/layout_tests/port/android.py ('k') | Tools/Scripts/webkitpy/layout_tests/port/driver_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698