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