Index: third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py |
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py |
index 590c3460572c2848c792ebecf4287c73fc4d3cf7..d624e2bc760a9251dd201ae023056bf56ea5297e 100644 |
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py |
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py |
@@ -172,7 +172,8 @@ class DepsUpdater(object): |
self.print_('## Done: no changes to import.') |
def is_manual_test(self, fs, dirname, basename): |
- return basename.endswith('-manual.html') or basename.endswith('-manual.htm') |
+ # We are importing manual pointer event tests and we are automating them. |
+ return ("pointerevents" not in dirname) and (basename.endswith('-manual.html') or basename.endswith('-manual.htm')) |
def is_baseline(self, fs, dirname, basename): |
return basename.endswith('-expected.txt') |