3 <style type=
"text/css" media=
"screen">
7 background-color: green;
8 transform: translateZ(
0);
17 background-color: blue;
20 <script type=
"text/javascript" charset=
"utf-8">
22 setTimeout(changeBackground1,
0);
24 function changeBackground1() {
25 document.getElementById('tester').style.backgroundColor = 'red';
26 setTimeout(changeBackground2,
0);
28 function changeBackground2() {
29 document.getElementById('tester').style.backgroundColor = 'green';
30 if (window.testRunner)
31 testRunner.notifyDone();
33 if (window.testRunner) {
34 testRunner.waitUntilDone();
35 testRunner.dumpAsTextWithPixelResults();
37 window.addEventListener('load', doTest, false);
41 <!-- this test should only display a green square -->
42 <div class=
"container">
43 <div id=
"tester"></div>