blob: 3f5f47c271beafabfda94711503dfec8faca09be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* 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");
|