Revision 4f05c011be2ef38886088a09748b90dd2476d40f authored by Mugdha Lakhani on 18 October 2018, 15:50:21 UTC, committed by Chromium WPT Sync on 18 October 2018, 15:50:21 UTC
This bug removes the check from renderer that prevents
this access, and updates idl files accordingly.

It also adds a WPT test to check that incomplete fetches
provide access to downloaded content.

Bug: 875201
Change-Id: I54ab33180f4d8ff49718b502bdea10740195c45c
1 parent b38f09e
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