https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 58917ffd22ed487e83412a5edfee10a8000b47f5 authored by Anne van Kesteren on 28 March 2018, 11:06:55 UTC
Test document.write() on image and text documents
Tip revision: 58917ff
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