https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e893060fea346c1b05076d048d34bfac0ed23172 authored by Chris Nardi on 02 April 2018, 17:04:26 UTC
Remove test that CSSStyleSheet.media is read-only
Tip revision: e893060
FileReaderSync.worker.js
importScripts("/resources/testharness.js");

var blob, readerSync;
setup(function() {
  readerSync = new FileReaderSync();
  blob = new Blob(["test"]);
});

test(function() {
  assert_true(readerSync instanceof FileReaderSync);
}, "Interface");

test(function() {
  var text = readerSync.readAsText(blob);
  assert_equals(text, "test");
}, "readAsText");

test(function() {
  var data = readerSync.readAsDataURL(blob);
  assert_equals(data.indexOf("data:"), 0);
}, "readAsDataURL");

test(function() {
  var data = readerSync.readAsArrayBuffer(blob);
  assert_true(data instanceof ArrayBuffer);
}, "readAsArrayBuffer");

done();
back to top