Initialize Tizen 2.3
[framework/web/webkit-efl.git] / LayoutTests / printing / compositing-layer-printing.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4   <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5   <title>Printing compositing layers</title>
6   <style type="text/css">
7     .box {
8       height: 100px;
9       width: 100px;
10       margin: 10px;
11       background-color: green;
12     }
13   </style>
14   <script>
15     if (window.testRunner)
16       testRunner.setPrinting();
17   </script>
18 </head>
19 <body>
20   <p>You should see two green squares below on screen, and when printed.</p>
21   <div class="box"></div>
22   <div class="box" style="-webkit-transform: translateZ(0)"></div>
23 </body>
24 </html>