https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 736f2bef4c6150b8584798121663db838b573320 authored by Emilio Cobos Álvarez on 04 April 2018, 18:00:47 UTC
Fix the logic to do layout stuff after reassigning a slot.
Tip revision: 736f2be
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