OLD | NEW |
| (Empty) |
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/st
rict.dtd"> | |
2 <html> | |
3 <head> | |
4 <title>Transform Repaint Descendants</title> | |
5 <meta http-equiv="content-type" content="text/html; charset=utf-8"> | |
6 <style type="text/css"> | |
7 #box { | |
8 position:relative; | |
9 top: 100px; | |
10 left: 100px; | |
11 height: 200px; | |
12 width: 200px; | |
13 background-color: #CCC; | |
14 border: 1px solid black; | |
15 transform: rotate(23deg); | |
16 } | |
17 | |
18 #box > div { | |
19 position: absolute; | |
20 height: 50px; | |
21 width: 400px; | |
22 top: 75px; | |
23 left: 75px; | |
24 background-color: #555; | |
25 } | |
26 </style> | |
27 </head> | |
28 <body onload="startTest()"> | |
29 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=22088">https://bu
gs.webkit.org/show_bug.cgi?id=22088</a>. The rotated box should be correctly red
rawn.</p> | |
30 <div id="box"><div></div></div> | |
31 </body> | |
32 </html> | |
OLD | NEW |