1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21

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

<html>
<head>
<style>
  div {
    width:200px;
    height:100px;
    background-color:black;
    color:#ffffff;
    -webkit-transform:translateZ(0);
  }
</style>
</head>
<body onload="finished()">
<div>3D CSS</div>
<script>
function finished() {
  domAutomationController.send("SUCCESS");
}
</script>
</body>
</html>