Update web-platform-tests to revision dc5cbf088edcdb266541d4e5a76149a2c6e716a0

This commit is contained in:
Ms2ger 2016-09-09 09:40:35 +02:00
parent 1d40075f03
commit 079092dfea
2381 changed files with 90360 additions and 17722 deletions

View file

@ -1,3 +1,5 @@
from __future__ import print_function
import argparse
import json
import sys
@ -88,10 +90,10 @@ class HTML(object):
e.g.
h = HTML()
print h.html(
print(h.html(
html.head(),
html.body([html.h1("Hello World!")], class_="body-class")
)
))
Would give
<!DOCTYPE html><html><head></head><body class="body-class"><h1>Hello World!</h1></body></html>"""
def __getattr__(self, name):
@ -299,7 +301,7 @@ def main(filenames):
if __name__ == "__main__":
if not sys.argv[1:]:
print """Please supply a list of UA name, filename pairs e.g.
print("""Please supply a list of UA name, filename pairs e.g.
python report.py Firefox firefox.json Chrome chrome.json IE internet_explorer.json"""
print main(sys.argv[1:])
python report.py Firefox firefox.json Chrome chrome.json IE internet_explorer.json""")
print(main(sys.argv[1:]))