Revision d241659cf7ee83d5b0b15b999676a2ca7b276808 authored by David Storey on 29 March 2018, 23:39:52 UTC, committed by David Storey on 29 March 2018, 23:39:52 UTC
Based on html/webappapis/scripting/events/event-handler-all-document-element-events.html but for cut/copy/paste and only testing SVGElement, and using SVG template
1 parent 709111a
Raw File
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