mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Update web-platform-tests to revision 0d318188757a9c996e20b82db201fd04de5aa255
This commit is contained in:
parent
b2a5225831
commit
1a81b18b9f
12321 changed files with 544385 additions and 6 deletions
|
@ -0,0 +1,55 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<link rel="help" href="https://xhr.spec.whatwg.org/#the-send()-method" />
|
||||
<link rel="help" href="https://xhr.spec.whatwg.org/#the-responsetype-attribute" data-tested-assertations="following::ol[1]/li[4]"/>
|
||||
<link rel="help" href="https://xhr.spec.whatwg.org/#the-response-attribute" data-tested-assertations="following::a[contains(@href,'#blob-response-entity-body')]/.." />
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<title>XMLHttpRequest: The response attribute: Blob data</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="log"></div>
|
||||
|
||||
<script type="text/javascript">
|
||||
var test = async_test();
|
||||
|
||||
test.step(function()
|
||||
{
|
||||
var xhr = new XMLHttpRequest();
|
||||
var content = "Hello";
|
||||
var blob;
|
||||
|
||||
xhr.onreadystatechange = function()
|
||||
{
|
||||
if (xhr.readyState == 4)
|
||||
{
|
||||
test.step(function()
|
||||
{
|
||||
blob = xhr.response;
|
||||
assert_equals(xhr.response, xhr.response,
|
||||
"Response should be cached");
|
||||
assert_true(blob instanceof Blob, 'blob is a Blob');
|
||||
|
||||
var reader = new FileReader();
|
||||
reader.onload = function()
|
||||
{
|
||||
test.step(function()
|
||||
{
|
||||
assert_equals(reader.result, content);
|
||||
test.done();
|
||||
});
|
||||
};
|
||||
reader.readAsText(blob);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
xhr.open("GET", "./resources/content.py?content=" + content, true);
|
||||
xhr.responseType = "blob";
|
||||
xhr.send();
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue