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

content / test / data / gpu / pixel_background_image.html [blame]

<!DOCTYPE html>
<html>
<head>
<title>Background Image Test: Repeat single_face background image</title>
<style type="text/css">
.nomargin {
  margin: 0px auto;
}
</style>
<script>
var g_swapsBeforeAck = 15;

function main() {
  loadAndDecodeImage("single_face.jpg");
}

function loadAndDecodeImage(src) {
  var img = new Image ();
  img.onload = () => {
    // Issue a decode command
    img.decode().then( () => {
      document.body.style.backgroundImage = 'url('+img.src+')';
      document.body.style.backgroundRepeat = "repeat";
      waitForFinish();
    }).catch( () => {
      document.body.appendChild(new Text("Could not load and decode the image :("));
      domAutomationController.send("FAILURE");
    });
  }
  img.src = src;
}

function waitForFinish()
{
  if (g_swapsBeforeAck == 0) {
    domAutomationController.send("SUCCESS");
  } else {
    g_swapsBeforeAck--;
    window.requestAnimationFrame(waitForFinish);
  }
}
</script>
</head>
<body onload="main()">
</body>
</html>