1
0
Fork 0
firefox/image/test/unit/test_async_notification.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

15 lines
483 B
JavaScript

/*
* Test for asynchronous image load/decode notifications in the case that the image load works.
*/
// A simple 3x3 png; rows go red, green, blue. Stolen from the PNG encoder test.
var pngspec =
"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAIAAADZSiLoAAAAEUlEQVQImWP4z8AAQTAamQkAhpcI+DeMzFcAAAAASUVORK5CYII=";
var ioService = Services.io;
// This is used in async_load_tests.js
/* exported uri */
var uri = ioService.newURI(pngspec);
load("async_load_tests.js");