async function testBlobText(blob, content) {
let text = await blob.text();
is(text, content, "blob.text()");
}
async function testBlobArrayBuffer(blob, content) {
let ab = await blob.arrayBuffer();
is(ab.byteLength, content.length, "blob.arrayBuffer()");
}
async function testBlobStream(blob, content) {
let s = await blob.stream();
ok(s instanceof ReadableStream, "We have a ReadableStream");
let data = await s.getReader().read();
ok(!data.done, "Nothing is done yet"); for (let i = 0; i < data.value.length; ++i) {
is(String.fromCharCode(data.value[i]), content[i], "blob.stream() - " + i);
}
}
function workify(func, blob, content) {
info("Workifying " + func);
returnnew Promise((resolve, reject) => {
let worker = new Worker("worker_blob_reading.js");
worker.postMessage({ func, blob, content });
worker.onmessage = function (e) { if (e.data.type == "done") {
resolve(); return;
}
if (e.data.type == "error") {
reject(e.data.message); return;
}
if (e.data.type == "test") {
ok(e.data.test, e.data.message); return;
}
if (e.data.type == "info") {
info(e.data.message);
}
};
});
}
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.12 Sekunden
(vorverarbeitet am 2026-04-27)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.