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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py

Issue 2020083002: Import wpt@1b61dad2be6c5100beb565e91c58b8c1084b3c7d (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing tests 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
« no previous file with comments | « third_party/WebKit/LayoutTests/resources/testharness.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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')
« no previous file with comments | « third_party/WebKit/LayoutTests/resources/testharness.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698