mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +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
49
tests/wpt/web-platform-tests/FileAPI/support/Blob.js
Normal file
49
tests/wpt/web-platform-tests/FileAPI/support/Blob.js
Normal file
|
@ -0,0 +1,49 @@
|
|||
function test_blob(fn, expectations) {
|
||||
var expected = expectations.expected,
|
||||
type = expectations.type,
|
||||
desc = expectations.desc;
|
||||
|
||||
var t = async_test(desc);
|
||||
t.step(function() {
|
||||
var blob = fn();
|
||||
assert_true(blob instanceof Blob);
|
||||
assert_false(blob instanceof File);
|
||||
assert_equals(blob.type, type);
|
||||
assert_equals(blob.size, expected.length);
|
||||
|
||||
var fr = new FileReader();
|
||||
fr.onload = t.step_func_done(function(event) {
|
||||
assert_equals(this.result, expected);
|
||||
}, fr);
|
||||
fr.onerror = t.step_func(function(e) {
|
||||
assert_unreached("got error event on FileReader");
|
||||
});
|
||||
fr.readAsText(blob, "UTF-8");
|
||||
});
|
||||
}
|
||||
|
||||
function test_blob_binary(fn, expectations) {
|
||||
var expected = expectations.expected,
|
||||
type = expectations.type,
|
||||
desc = expectations.desc;
|
||||
|
||||
var t = async_test(desc);
|
||||
t.step(function() {
|
||||
var blob = fn();
|
||||
assert_true(blob instanceof Blob);
|
||||
assert_false(blob instanceof File);
|
||||
assert_equals(blob.type, type);
|
||||
assert_equals(blob.size, expected.length);
|
||||
|
||||
var fr = new FileReader();
|
||||
fr.onload = t.step_func_done(function(event) {
|
||||
assert_true(this.result instanceof ArrayBuffer,
|
||||
"Result should be an ArrayBuffer");
|
||||
assert_array_equals(new Uint8Array(this.result), expected);
|
||||
}, fr);
|
||||
fr.onerror = t.step_func(function(e) {
|
||||
assert_unreached("got error event on FileReader");
|
||||
});
|
||||
fr.readAsArrayBuffer(blob);
|
||||
});
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue