https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 7278d99a68da4b055807c635a9e710207565fc8b authored by Manuel Rego Casasnovas on 14 March 2018, 15:33:37 UTC
[css-align] Use actual prefixed properties in the grid-* gutter tests
Tip revision: 7278d99
serve.py
import sys
import logging

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

def main():
    serve.main()
back to top