https://github.com/web-platform-tests/wpt
Revision 6c62c5b8d7e7f80b3a3a84c7d0296c06d90c03f7 authored by Zirro on 25 April 2018, 15:05:06 UTC, committed by Anne van Kesteren on 25 April 2018, 15:05:06 UTC
The test requires the event to be cancelable. See https://github.com/jsdom/jsdom/pull/2197.
1 parent 6d7173c
Raw File
Tip revision: 6c62c5b8d7e7f80b3a3a84c7d0296c06d90c03f7 authored by Zirro on 25 April 2018, 15:05:06 UTC
DOM: fix test for Event.returnValue
Tip revision: 6c62c5b
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