Rubber-stamped by Brady Eidson.
[webbrowser.git] / LayoutTests / compositing / generated-content.html
blobbf31854cc0f464f32150147a7174a56bea05409b
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd">
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;
14 .box:after {
15 content: 'Generated';
16 display: block;
17 width: 100%;
18 height: 100%;
19 -webkit-transform: translate3d(0, 0, 0);
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>