OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>Chrome 18 opacity test</title> | 4 <title>Chrome 18 opacity test</title> |
5 <style> | 5 <style> |
6 .ninety-nine{ | 6 .ninety-nine{ |
7 opacity: 0.99; | 7 opacity: 0.99; |
8 } | 8 } |
9 </style> | 9 </style> |
10 <script> | 10 <script> |
(...skipping 22 matching lines...) Expand all Loading... |
33 values outside the range 0.0 (fully transparent) to 1.0 (fully opaque) | 33 values outside the range 0.0 (fully transparent) to 1.0 (fully opaque) |
34 will be clamped to this range. If the object is a container element, then | 34 will be clamped to this range. If the object is a container element, then |
35 the effect is as if the contents of the container element were blended | 35 the effect is as if the contents of the container element were blended |
36 against the current background using a mask where the value of each pixel | 36 against the current background using a mask where the value of each pixel |
37 of the mask is the opacity value | 37 of the mask is the opacity value |
38 </div> | 38 </div> |
39 <pre id="label"></pre> | 39 <pre id="label"></pre> |
40 </div> | 40 </div> |
41 </body> | 41 </body> |
42 </html> | 42 </html> |
OLD | NEW |