Load From 404

var config = {
    type: Phaser.AUTO,
    width: 800,
    height: 600,
    parent: 'phaser-example',
    scene: {
        preload: preload,
        create: create
    }
};

var game = new Phaser.Game(config);

function preload ()
{
    //  The URLs are incorrect on purpose to test 404 handling
    this.load.image('taikodrummaster', 'assets/tribbles/taikodrummaster.jpg');
    this.load.image('sukasuka-chtholly', 'assets/tribbles/sukasuka-chtholly.png');
}

function create ()
{
    this.add.image(400, 300, 'taikodrummaster');
    this.add.image(400, 500, 'sukasuka-chtholly');

    this.add.text(10, 10, 'Load complete, both files 404d', { font: '16px Courier', fill: '#00ff00' });
}