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

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

<!DOCTYPE HTML>
<html>
<head>
<title>CSS 3D Test: Projected Blue Box over Black Background</title>
<style type="text/css">
#container {
  -webkit-perspective: 500;
}

#container > div {
  position: relative;
  margin: 50px;
  width: 125px;
  height: 75px;
}

#container > :first-child {
  background-color: blue;
  -webkit-transform: rotateY(45deg);
}
</style>
<script>
var g_swapsBeforeAck = 15;

function main()
{
  waitForFinish();
}

function waitForFinish()
{
  if (g_swapsBeforeAck == 0) {
    domAutomationController.send("SUCCESS");
  } else {
    g_swapsBeforeAck--;
    document.getElementById('blue_box').style.zIndex = g_swapsBeforeAck + 1;
    window.requestAnimationFrame(waitForFinish);
  }
}
</script>
</head>
<body onload="main()">
<div style="position:relative; width:200px; height:200px; background-color:black; zindex-0">
</div>
<div id="container" style="position:absolute; top:0px; left:0px">
  <div id="blue_box"></div>
</div>
</body>
</html>