https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 85bfdbfc6739dd090b0a568712713432d3aa2d51 authored by Darren Shen on 11 April 2018, 10:17:19 UTC
[css-typed-om] Support remaining inline properties.
Tip revision: 85bfdbf
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