https://github.com/web-platform-tests/wpt
Revision 70331b364df34875ab5711520e24759a140b9eb3 authored by Ms2ger on 13 March 2018, 16:12:19 UTC, committed by Ms2ger on 13 March 2018, 16:12:19 UTC
1 parent 970fca8
Raw File
Tip revision: 70331b364df34875ab5711520e24759a140b9eb3 authored by Ms2ger on 13 March 2018, 16:12:19 UTC
Add tests for transferring ImageBitmap objects.
Tip revision: 70331b3
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