gecko-dev/image/test/unit/test_async_notification.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 строки
504 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.
const { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
var pngspec =
"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAIAAADZSiLoAAAAEUlEQVQImWP4z8AAQTAamQkAhpcI+DeMzFcAAAAASUVORK5CYII=";
var ioService = Services.io;
var uri = ioService.newURI(pngspec);
load("async_load_tests.js");