Update web-platform-tests to revision 15ad8eaadd91425cc9331b2e658d4c2796ae5ad8

This commit is contained in:
Ms2ger 2016-04-01 18:04:10 +02:00
parent 0397e2a24d
commit dba68269e0
29 changed files with 26 additions and 94 deletions

View file

@ -28533,6 +28533,10 @@
"path": "webaudio/the-audio-api/the-offlineaudiocontext-interface/current-time-block-size.html",
"url": "/webaudio/the-audio-api/the-offlineaudiocontext-interface/current-time-block-size.html"
},
{
"path": "webdriver/interface.html",
"url": "/webdriver/interface.html"
},
{
"path": "webgl/bufferSubData.html",
"url": "/webgl/bufferSubData.html"
@ -40893,7 +40897,7 @@
}
]
},
"rev": "5582e4d2bfcfd1fa9f105406b143170ee2af7db1",
"rev": "15ad8eaadd91425cc9331b2e658d4c2796ae5ad8",
"url_base": "/",
"version": 3
}

View file

@ -8036,7 +8036,7 @@
[Document interface: iframe.contentDocument must inherit property "createTreeWalker" with the proper type (27)]
expected: FAIL
[Document interface: iframe.contentDocument must inherit property "styleSheets" with the proper type (28)]
expected: FAIL

View file

@ -1,3 +0,0 @@
[link-load-event.html]
type: testharness
expected: TIMEOUT

View file

@ -1 +1 @@
9f892edd87441393e5de00790a5abb7fc93a09de
0397e2a24d3e5c988b089ef100002397f4cabdfa

View file

@ -1,6 +0,0 @@
[015a.html]
type: testharness
expected: TIMEOUT
[ scheduler: DOM added inline+external+inline script earlier in document]
expected: NOTRUN

View file

@ -1,3 +0,0 @@
[050.html]
type: testharness
expected: TIMEOUT

View file

@ -1,6 +0,0 @@
[069.html]
type: testharness
expected: TIMEOUT
[scheduler: external files added through DOM should not block further parsing while loading]
expected: NOTRUN

View file

@ -1,5 +0,0 @@
[078.html]
type: testharness
[ adding several types of scripts through the DOM and removing some of them confuses scheduler (slow-loading scripts) ]
expected: FAIL

View file

@ -1,6 +0,0 @@
[081.html]
type: testharness
expected: TIMEOUT
[ scheduler: slow loading external script added with DOM (appendChild)]
expected: NOTRUN

View file

@ -1,6 +0,0 @@
[082.html]
type: testharness
expected: TIMEOUT
[ scheduler: multiple slow loading external scripts added with DOM (appendChild)]
expected: NOTRUN

View file

@ -1,6 +0,0 @@
[085.html]
type: testharness
expected: TIMEOUT
[ scheduler: async script and slow-loading defer script]
expected: NOTRUN

View file

@ -1,6 +1,5 @@
[086.html]
type: testharness
expected: TIMEOUT
[ scheduler: async script and slow-loading async script]
expected: FAIL

View file

@ -1,6 +0,0 @@
[087.html]
type: testharness
expected: TIMEOUT
[ scheduler: multiple defer scripts, one slow loading]
expected: NOTRUN

View file

@ -1,6 +1,5 @@
[088.html]
type: testharness
expected: TIMEOUT
[ scheduler: multiple scripts with defer and async attributes]
expected: FAIL

View file

@ -1,6 +1,5 @@
[091.html]
type: testharness
expected: TIMEOUT
[ scheduler: force-async off on non-parser-inserted script]
expected: FAIL

View file

@ -1,6 +0,0 @@
[092.html]
type: testharness
expected: TIMEOUT
[ scheduler: defer script and slow-loading non-async external script]
expected: NOTRUN

View file

@ -1,6 +0,0 @@
[095.html]
type: testharness
expected: TIMEOUT
[ scheduler: slow-loading script added from defer blocking load event]
expected: NOTRUN

View file

@ -1,6 +1,5 @@
[105.html]
type: testharness
expected: TIMEOUT
[ scheduler: adding async attribute at runtime]
expected: NOTRUN
expected: FAIL

View file

@ -1,6 +1,5 @@
[106-import.html]
type: testharness
expected: TIMEOUT
[ scheduler: stylesheets blocking scripts]
expected: FAIL

View file

@ -1,3 +0,0 @@
[106-noimport.html]
type: testharness
expected: TIMEOUT

View file

@ -1,6 +1,5 @@
[111.html]
type: testharness
expected: TIMEOUT
[ scheduler: removing async attribute at runtime]
expected: FAIL

View file

@ -1,6 +1,5 @@
[112.html]
type: testharness
expected: TIMEOUT
[ scheduler: removing async attribute at runtime, script also has defer attribute]
expected: FAIL

View file

@ -1,9 +1,5 @@
[122.html]
type: testharness
expected: TIMEOUT
[Reinserted script async IDL attribute]
expected: FAIL
[scheduler: altering the type attribute and adding/removing external script ]
expected: TIMEOUT

View file

@ -1,6 +1,5 @@
[123.html]
type: testharness
expected: TIMEOUT
[scheduler: altering the type attribute and adding/removing external script with async=false ]
expected: TIMEOUT
expected: FAIL

View file

@ -1,6 +0,0 @@
[125.html]
type: testharness
expected: TIMEOUT
[scheduler: altering the type attribute and changing script data external script ]
expected: TIMEOUT

View file

@ -1,6 +1,5 @@
[126.html]
type: testharness
expected: TIMEOUT
[scheduler: altering the type attribute and changing script data external script async=false ]
expected: TIMEOUT
expected: FAIL

View file

@ -1,6 +0,0 @@
[130.html]
type: testharness
expected: TIMEOUT
[scheduler: appending external script element to script ]
expected: TIMEOUT

View file

@ -249,7 +249,7 @@ def trickle(request, response, delays):
yield item
if not repeat and offset[0] < len(content):
modified_content.append(content[offset[0]:])
yield content[offset[0]:]
response.content = add_content(delays)
return response

View file

@ -0,0 +1,15 @@
<!doctype html>
<meta charset=utf-8>
<title>WebDriver interface test</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=/resources/WebIDLParser.js></script>
<script src=/resources/idlharness.js></script>
<script>
var t = new IdlArray();
t.add_untested_idls("interface Navigator {};");
t.add_idls("partial interface Navigator { readonly attribute boolean webdriver; };");
t.add_objects({Navigator: ["navigator"]});
t.test();
</script>