comparison: dom/plugins/test/reftest/plugin-alpha-zindex.html
dom/plugins/test/reftest/plugin-alpha-zindex.html
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 <!doctype html> |
|
2 <html> |
|
3 <head> |
|
4 <style type="text/css"> |
|
5 #one { |
|
6 position:absolute; |
|
7 left:0px; top:0px; |
|
8 z-index:1; |
|
9 } |
|
10 #two { |
|
11 position:absolute; |
|
12 top:100px; left:100px; |
|
13 width:200px; height:200px; |
|
14 z-index:0; |
|
15 background-color: rgb(255,0,0); |
|
16 } |
|
17 </style> |
|
18 </head> |
|
19 <body> |
|
20 <div id="two"></div> |
|
21 <embed id="one" type="application/x-test" width="400" height="400" drawmode="solid" color="9900FF00"></embed> |
|
22 </body> |
|
23 </html> |
|
24 |