https://github.com/web-platform-tests/wpt
Revision b38da6a2c0abafdeee5e9f534953272cd791f15d authored by Mike Taylor on 30 March 2018, 21:08:48 UTC, committed by Mike Taylor on 30 March 2018, 21:08:48 UTC
ref: https://github.com/whatwg/dom/issues/625
1 parent e151f89
Raw File
Tip revision: b38da6a2c0abafdeee5e9f534953272cd791f15d authored by Mike Taylor on 30 March 2018, 21:08:48 UTC
Add tests for Event.srcElement
Tip revision: b38da6a
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