aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/desandro/imagesloaded/test/unit/background.js
blob: ca76fad6f65e31b86a778164215b44c3f2d18722 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
QUnit.test( 'background', function( assert ) {
  'use strict';

  // from Modernizr
  var supportsMultiBGs = ( function() {
    var style = document.createElement('a').style;
    style.cssText = 'background:url(https://),url(https://),red url(https://)';
    return (/(url\s*\(.*?){3}/).test(style.background);
  })();

  var multiBGCount = supportsMultiBGs ? 3 : 0;
  var done = assert.async( 14 + multiBGCount );

  var imgLoad0 = imagesLoaded( '#background .tulip', { background: true }, function() {
    assert.ok( true, 'callback triggered on .orange-tree');
    done();
  });
  assert.equal( imgLoad0.images.length, 1, '1 image on .images' );

  imgLoad0.on( 'progress', function( instance, image, element ) {
    assert.ok( element.nodeName == 'DIV', 'progress; element is div');
    assert.ok( image.isLoaded, 'progress; image.isLoaded');
    done();
  });

  var imgLoad1 = imagesLoaded( '#background .thunder-cloud', { background: true }, function() {
    assert.ok( true, 'callback triggered on .thunder-cloud');
    done();
  });
  assert.equal( imgLoad1.images.length, 1, '1 image on .images' );

  // multiple backgrounds
  var imgLoad2 = imagesLoaded( '#background .multi', { background: true }, function() {
    assert.ok( true, 'callback triggered on .multi');
    done();
  });
  assert.equal( imgLoad2.images.length, multiBGCount, 'correct multiple BG count on .images' );

  // multiple elements
  var imgLoad3 = imagesLoaded( '#background .bg-box', { background: true }, function() {
    assert.ok( true, 'callback triggered on .bg-box');
    var count = 5 + multiBGCount;
    assert.equal( imgLoad3.images.length, count, count + ' images on .bg-box' );
    done();
  });

  imgLoad3.on('progress', function( instance, image/*, element */) {
    assert.ok( true, 'progress on .bg-box; ' + image.img.src );
    assert.equal( image.isLoaded, true, 'image.isLoaded == true' );
    done();
  });

  // background and <img> children
  var imgLoad4 = imagesLoaded( '#background .gulls', { background: true } );
  assert.equal( imgLoad4.images.length, 3, '3 images: 1 background and 2 <img>' );

  imgLoad4.on( 'progress', function( instance, image ) {
    assert.equal( image.isLoaded, true, 'image is loaded' );
    done();
  });

  // child background selector
  var imgLoad5 = imagesLoaded( '#background', { background: '.bg-box' }, function() {
    var count = 5 + multiBGCount;
    assert.equal( imgLoad5.images.length, count,
      count + ' images on .bg-box, with {background: .bg-box}' );
    done();
  });

});