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

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

Issue 2039943003: Convert fast/repaint/window-resize*.html into reftests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: 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 16386d4d08e0f22bce690c9756495421fcd524eb..128133ab3b6bad55952bde47bb1a0e9a88637996 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
@@ -1571,9 +1571,22 @@ class Port(object):
pass
def physical_test_suites(self):
+ small_tile_flags = [
+ '--default-tile-width=16',
+ '--default-tile-height=16',
+ '--max-untiled-layer-width=16',
+ '--max-untiled-layer-height=16'
+ ]
+
return [
# For example, to turn on force-compositing-mode in the svg/ directory:
# PhysicalTestSuite('svg', ['--force-compositing-mode']),
+
+ # Use small tiles to make show most rect under-invalidations.
+ PhysicalTestSuite('fast/repaint', small_tile_flags),
+ PhysicalTestSuite('paint/invalidation', small_tile_flags),
+ PhysicalTestSuite('compositing', small_tile_flags),
Xianzhu 2016/06/08 17:01:20 Do you think this is proper?
pdr. 2016/06/08 17:32:18 These choices make sense to me. My only worry is t
Xianzhu 2016/06/08 17:46:40 Currently the tile size configurations are initial
+
PhysicalTestSuite('fast/text', ["--enable-direct-write", "--enable-font-antialiasing"]),
]

Powered by Google App Engine
This is Rietveld 408576698