OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style> | 3 <style> |
4 body { | 4 body { |
5 margin: 0; | 5 margin: 0; |
6 zoom: 120%; | 6 zoom: 120%; |
7 } | 7 } |
8 .box { | 8 .box { |
9 position: absolute; | 9 position: absolute; |
10 top: 20px; | 10 top: 20px; |
11 width:100px; | 11 width:100px; |
12 height:100px; | 12 height:100px; |
13 } | 13 } |
14 | 14 |
15 .tester1 { | 15 .tester1 { |
16 left: 100px; | 16 left: 100px; |
17 top: 70px; | 17 top: 70px; |
18 background-color: red; | 18 background-color: red; |
19 } | 19 } |
20 | 20 |
21 .tester2 { | 21 .tester2 { |
22 left: 250px; | 22 left: 250px; |
23 top: 70px; | 23 top: 70px; |
24 background-color: red; | 24 background-color: red; |
25 } | 25 } |
26 | 26 |
27 .translated1 { | 27 .translated1 { |
28 -webkit-transform: translate(100px, 50px); | 28 transform: translate(100px, 50px); |
29 background-color: green; | 29 background-color: green; |
30 } | 30 } |
31 | 31 |
32 .translated2 { | 32 .translated2 { |
33 -webkit-transform-origin: 50px, 50px; | 33 -webkit-transform-origin: 50px, 50px; |
34 -webkit-transform: translate(250px, 50px) rotate(90deg); | 34 transform: translate(250px, 50px) rotate(90deg); |
35 background-color: green; | 35 background-color: green; |
36 } | 36 } |
37 | 37 |
38 </style> | 38 </style> |
39 </head> | 39 </head> |
40 <body> | 40 <body> |
41 | 41 |
42 <p><a href="https://bugs.webkit.org/show_bug.cgi?id=24784">https://bugs.webkit.o
rg/show_bug.cgi?id=24784</a></p> | 42 <p><a href="https://bugs.webkit.org/show_bug.cgi?id=24784">https://bugs.webkit.o
rg/show_bug.cgi?id=24784</a></p> |
43 <p>Test transform lengths with zoom. You should see two green squares below, no
red.</p> | 43 <p>Test transform lengths with zoom. You should see two green squares below, no
red.</p> |
44 | 44 |
45 <div class="tester1 box"></div> | 45 <div class="tester1 box"></div> |
46 <div class="tester2 box"></div> | 46 <div class="tester2 box"></div> |
47 | 47 |
48 <div class="translated1 box"></div> | 48 <div class="translated1 box"></div> |
49 <div class="translated2 box"></div> | 49 <div class="translated2 box"></div> |
50 | 50 |
51 </body> | 51 </body> |
52 </html> | 52 </html> |
OLD | NEW |