Update web-platform-tests to revision 48b9be82df0e5099393401a3f43ed9c8570832be

This commit is contained in:
WPT Sync Bot 2019-02-10 21:04:07 -05:00
parent aeeaf9dda1
commit bd408bae04
17 changed files with 34 additions and 35 deletions

View file

@ -14,6 +14,9 @@
[Revoke blob URL after creating Request, will fetch]
expected: FAIL
[Revoke blob URL after calling fetch, fetch should succeed]
expected: FAIL
[url-with-fetch.any.html]
[Untitled]

View file

@ -680708,7 +680708,7 @@
"support"
],
"tools/wptrunner/wptrunner/browsers/firefox.py": [
"ec317b8bed2ce515661bc056a37039ea44801299",
"72d8f48bff7355a56bb8aec0524590fce6346824",
"support"
],
"tools/wptrunner/wptrunner/browsers/ie.py": [
@ -680908,7 +680908,7 @@
"support"
],
"tools/wptrunner/wptrunner/testloader.py": [
"aa23cfb5e9bdf5fb8de7ae78b2774d704130eada",
"ae7fae30d0b02bb3e054cb1cf96ddc623ef4697a",
"support"
],
"tools/wptrunner/wptrunner/testrunner.py": [
@ -681056,7 +681056,7 @@
"support"
],
"tools/wptrunner/wptrunner/wptrunner.py": [
"dca35f5563d27387a5d8229cba1e68700b218061",
"95acafc16467e9cdd3b272298cf9e437339d5b21",
"support"
],
"tools/wptrunner/wptrunner/wpttest.py": [

View file

@ -74,3 +74,9 @@
[opacity end]
expected: FAIL
[border-top-width end]
expected: FAIL
[border-right-width end]
expected: FAIL

View file

@ -6,6 +6,3 @@
[Instant scrolling while doing history navigation.]
expected: FAIL
[Smooth scrolling while doing history navigation.]
expected: FAIL

View file

@ -11,6 +11,3 @@
[X-Content-Type-Options%3A%20nosniff%0C]
expected: FAIL
[Content-Type-Options%3A%20nosniff]
expected: FAIL

View file

@ -1,4 +0,0 @@
[javascript-url-abort-return-value-string.tentative.html]
[Aborting fetch for javascript:string navigation]
expected: FAIL

View file

@ -1,5 +0,0 @@
[javascript-url-abort-return-value-undefined.tentative.html]
expected: TIMEOUT
[Not aborting fetch for javascript:undefined navigation]
expected: TIMEOUT

View file

@ -1,4 +0,0 @@
[traverse_the_history_1.html]
[Multiple history traversals from the same task]
expected: FAIL

View file

@ -0,0 +1,10 @@
[non-active-document.html]
[DOMParser]
expected: FAIL
[createHTMLDocument]
expected: FAIL
[<template>]
expected: FAIL

View file

@ -0,0 +1,7 @@
[toggleEvent.html]
[Calling open twice on 'details' fires only one toggle event]
expected: FAIL
[Setting open=true to opened 'details' element should not fire a toggle event at the 'details' element]
expected: FAIL

View file

@ -1,2 +0,0 @@
[script-onerror-insertion-point-2.html]
expected: TIMEOUT

View file

@ -12,6 +12,3 @@
[Verifies the resolution of entry.startTime is at least 5 microseconds.]
expected: TIMEOUT
[Verifies the resolution of performance.now() is at least 5 microseconds.]
expected: FAIL

View file

@ -1,4 +1,5 @@
[realtimeanalyser-fft-scaling.html]
expected: TIMEOUT
[X 2048-point FFT peak position is not equal to 64. Got 0.]
expected: FAIL

View file

@ -1,5 +1,4 @@
[import-in-moduleworker.html]
expected: ERROR
[Base URL in module dedicated workers: import]
expected: FAIL

View file

@ -163,7 +163,10 @@ def run_info_extras(**kwargs):
def run_info_browser_version(binary):
version_info = mozversion.get_version(binary)
try:
version_info = mozversion.get_version(binary)
except mozversion.errors.VersionError:
version_info = None
if version_info:
return {"browser_build_id": version_info.get("application_buildid", None),
"browser_changeset": version_info.get("application_changeset", None)}

View file

@ -422,7 +422,6 @@ class TestLoader(object):
test_types,
run_info,
manifest_filters=None,
meta_filters=None,
chunk_type="none",
total_chunks=1,
chunk_number=1,
@ -433,7 +432,6 @@ class TestLoader(object):
self.run_info = run_info
self.manifest_filters = manifest_filters if manifest_filters is not None else []
self.meta_filters = meta_filters if meta_filters is not None else []
self.manifests = test_manifests
self.tests = None

View file

@ -57,7 +57,6 @@ def get_loader(test_paths, product, debug=None, run_info_extras=None, **kwargs):
manifest_download=kwargs["manifest_download"]).load()
manifest_filters = []
meta_filters = []
if kwargs["include"] or kwargs["exclude"] or kwargs["include_manifest"] or kwargs["default_exclude"]:
manifest_filters.append(testloader.TestFilter(include=kwargs["include"],
@ -65,15 +64,12 @@ def get_loader(test_paths, product, debug=None, run_info_extras=None, **kwargs):
manifest_path=kwargs["include_manifest"],
test_manifests=test_manifests,
explicit=kwargs["default_exclude"]))
if kwargs["tags"]:
meta_filters.append(testloader.TagFilter(tags=kwargs["tags"]))
ssl_enabled = sslutils.get_cls(kwargs["ssl_type"]).ssl_enabled
test_loader = testloader.TestLoader(test_manifests,
kwargs["test_types"],
run_info,
manifest_filters=manifest_filters,
meta_filters=meta_filters,
chunk_type=kwargs["chunk_type"],
total_chunks=kwargs["total_chunks"],
chunk_number=kwargs["this_chunk"],