3 <!-- READ BEFORE UPDATING:
4 If this test is updated make sure to increment the "revision" value of the
5 associated test in content/test/gpu/page_sets/pixel_tests.json. This will ensure
6 that the baseline images are regenerated on the next run.
11 <title>CSS
3D Test: Projected Blue Box over Black Background
</title>
12 <style type=
"text/css">
18 -webkit-perspective: 500;
28 #container > :first-child
{
29 background-color: blue
;
30 -webkit-transform: rotateY
(45deg);
34 var g_swapsBeforeAck
= 15;
41 function waitForFinish()
43 if (g_swapsBeforeAck
== 0) {
44 domAutomationController
.setAutomationId(1);
45 domAutomationController
.send("SUCCESS");
48 document
.getElementById('blue_box').style
.zIndex
= g_swapsBeforeAck
+ 1;
49 window
.webkitRequestAnimationFrame(waitForFinish
);
54 <body onload=
"main()">
55 <div style=
"position:relative; width:200px; height:200px; background-color:black; zindex-0">
57 <div id=
"container" style=
"position:absolute; top:0px; left:0px">
58 <div id=
"blue_box"></div>