upload tizen1.0 source
[framework/web/webkit-efl.git] / LayoutTests / compositing / generated-content.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2    "http://www.w3.org/TR/html4/loose.dtd">
3
4 <html lang="en">
5 <head>
6   <title>Generated Content and Transforms</title>
7   <style type="text/css" media="screen">
8     .box {
9       width: 200px;
10       height: 200px;
11       border: 1px solid black;
12     }
13     
14     .box:after {
15       content: 'Generated';
16       display: block;
17       width: 100%;
18       height: 100%;
19       -webkit-transform: translate3d(0, 0, 0);
20     }
21   </style>
22 </head>
23 <body>
24   <p><a href="https://bugs.webkit.org/show_bug.cgi?id=26095">https://bugs.webkit.org/show_bug.cgi?id=26095</a></p>
25   <p>Tests that a 3D transform on a generated node does not crash.</p>
26   <div class="box"></div>
27 </body>
28 </html>