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

Side by Side Diff: third_party/WebKit/LayoutTests/external/csswg-test/lint

Issue 2647353009: Import csswg-test@6212b49508f6272646ac4783fad331ff17031a10 (Closed)
Patch Set: Skip css-values-4 Created 3 years, 10 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 unified diff | Download patch
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 import sys 2 import sys
3 3
4 try: 4 try:
5 from wpt_tools.lint import lint 5 from wpt_tools.lint import lint
6 except ImportError: 6 except ImportError:
7 print("wpt_tools.lint not found. Did you forget to run " 7 print("wpt_tools.lint not found. Did you forget to run "
8 '"git submodule update --init --recursive"?') 8 '"git submodule update --init --recursive"?')
9 sys.exit(2) 9 sys.exit(2)
10 10
11 sys.exit(0 if lint.main() == 0 else 1) 11 sys.exit(0 if lint.main(force_css_mode=True) == 0 else 1)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698