Revision 3b28941057d1ad01230f95db6a63e5b56c38d00f authored by Matt Wolenetz on 13 July 2016, 18:17:52 UTC, committed by Matt Wolenetz on 13 July 2016, 18:21:14 UTC
1. Includes a degenerate <div></div> to enable mediasource_test() to
appendChild to a generated document.body triggered by inclusion of the
div.
2. Updates {set,clear}LiveSeekableRange() behavior verification to no
longer expect exception if updating is currently true for any
SourceBuffer in sourceBuffers. This corresponds to landing the expected
MSE spec change in https://github.com/w3c/media-source/pull/119 to fix
MSE spec issue https://github.com/w3c/media-source/issues/118
3. Includes Chromium+W3C license stamp.
1 parent b640de0
Raw File
lint
#!/usr/bin/env python
import sys

try:
    from tools.lint import lint
except ImportError:
    print("tools.lint not found.  Did you forget to run "
          '"git submodule update --init --recursive"?')
    sys.exit(2)

sys.exit(0 if lint.main() == 0 else 1)
back to top