https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 76fcd56a3903229fb0d9fa84fc1fd91cad108ba9 authored by Hwanseung Lee on 19 March 2018, 01:17:13 UTC
[css-typed-om] support some properties -2-
Tip revision: 76fcd56
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