<script type="application/javascript">
// This function is called into an iframe.
function runTestInIframe() { var audioContext = new AudioContext();
ok(!!audioContext.audioWorklet, "audioContext.audioWorklet exists");
// First loading
audioContext.audioWorklet.addModule("common.js")
.then(() => {
ok(true, "Import should load a resource.");
})
// Second loading - same file
.then(() => {
return audioContext.audioWorklet.addModule("common.js")
})
.then(() => {
ok(true, "Import should load a resource.");
})
// 3rd loading - a network error
.then(() => {
return audioContext.audioWorklet.addModule("404.js");
})
.then(() => {
ok(false, "The loading should fail.");
}, () => {
ok(true, "The loading should fail.");
})
// 4th loading - a network error
.then(() => {
return audioContext.audioWorklet.addModule("404.js");
})
.then(() => {
ok(false, "The loading should fail.");
}, () => {
ok(true, "The loading should fail.");
})
// done
.then(() => {
SimpleTest.finish();
});
}
</script>
</body>
</html>
Messung V0.5
¤ Dauer der Verarbeitung: 0.16 Sekunden
(vorverarbeitet)
¤
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.