https://github.com/web-platform-tests/wpt
Raw File
Tip revision: be315b1de5c832b49d353768e0b2a268658714b9 authored by Chris Rebert on 09 October 2015, 01:08:52 UTC
Stop using designMode and execCommand for dirtying in HTML form constraint tests
Tip revision: be315b1
lint
#!/usr/bin/env python
import sys

try:
    from tools.lint import lint
except ImportError:
    print("tools.lint not found.  Did you forget to run "
          '"git submodule update --init --recursive"?')
    sys.exit(2)

sys.exit(0 if lint.main() == 0 else 1)
back to top