git://git.webkit.org
/
WebKit-https.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
createElement should not lowercase non-ASCII characters
[WebKit-https.git]
/
LayoutTests
/
imported
/
w3c
/
web-platform-tests
/
lint
1
#!/usr/bin/env python
2
import sys
3
4
try:
5
from tools.lint import lint
6
except ImportError:
7
print("tools.lint not found. Did you forget to run "
8
'"git submodule update --init --recursive"?')
9
sys.exit(2)
10
11
sys.exit(0 if lint.main() == 0 else 1)