https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 41e499191f8b6b39e09f21dc97b939b58bf60776 authored by Chris Nardi on 13 March 2018, 20:45:10 UTC
Rewrite CSSOM index tests
Tip revision: 41e4991
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