https://github.com/web-platform-tests/wpt
Revision 76830ce46b3c14e3a9e5d1a7d2b391b335953cd6 authored by Rune Lillesveen on 22 March 2018, 01:57:52 UTC, committed by Chromium WPT Sync on 22 March 2018, 01:57:52 UTC
Reify as an identifier.

Bug: 820299
Change-Id: I483a1e3c126e5b280a2337772584070f96cd533e
Reviewed-on: https://chromium-review.googlesource.com/970263
Reviewed-by: Darren Shen <shend@chromium.org>
Commit-Queue: Rune Lillesveen <futhark@chromium.org>
Cr-Commit-Position: refs/heads/master@{#544939}
1 parent 0529cde
Raw File
Tip revision: 76830ce46b3c14e3a9e5d1a7d2b391b335953cd6 authored by Rune Lillesveen on 22 March 2018, 01:57:52 UTC
[css-typed-om] Add support for column-span.
Tip revision: 76830ce
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