https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c03557a067c5fb8b1c1fcf08001cc3b1a2c8c24a authored by Darren Shen on 11 April 2018, 06:13:15 UTC
[css-typed-om] Support remaining mask properties.
Tip revision: c03557a
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