Update web-platform-tests to revision 01e5f08719565e56a6c0d2abfc2485481ceb924a

This commit is contained in:
WPT Sync Bot 2019-02-09 20:33:35 -05:00
parent 5de6d87c97
commit 67ab92907c
11 changed files with 21 additions and 22 deletions

View file

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

View file

@ -680860,7 +680860,7 @@
"support" "support"
], ],
"tools/wptrunner/wptrunner/manifestexpected.py": [ "tools/wptrunner/wptrunner/manifestexpected.py": [
"f4fddc7a2a14d3170ea7afc72c5a1ef949ffa772", "80284bd8a215e73a1140239a9aec1f312d8cacb5",
"support" "support"
], ],
"tools/wptrunner/wptrunner/manifestinclude.py": [ "tools/wptrunner/wptrunner/manifestinclude.py": [

View file

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

View file

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

View file

@ -0,0 +1,4 @@
[traverse_the_history_4.html]
[Multiple history traversals, last would be aborted]
expected: FAIL

View file

@ -0,0 +1,4 @@
[traverse_the_history_5.html]
[Multiple history traversals, last would be aborted]
expected: FAIL

View file

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

View file

@ -1,7 +0,0 @@
[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

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

View file

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

View file

@ -55,8 +55,9 @@ def tags(node):
def prefs(node): def prefs(node):
def value(ini_value): def value(ini_value):
if isinstance(ini_value, (str, unicode)): if isinstance(ini_value, (str, unicode)):
return tuple(ini_value.split(":", 1)) return tuple(pref_piece.strip() for pref_piece in ini_value.split(':', 1))
else: else:
# this should be things like @Reset, which are apparently type 'object'
return (ini_value, None) return (ini_value, None)
try: try: