OLD | NEW |
---|---|
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 #div { | 5 #div { |
6 position: fixed; | 6 position: fixed; |
7 float: left; | 7 float: left; |
8 z-index: 10; | 8 z-index: 10; |
9 } | 9 } |
10 span { | 10 span { |
(...skipping 16 matching lines...) Expand all Loading... | |
27 testRunner.notifyDone(); | 27 testRunner.notifyDone(); |
28 }); | 28 }); |
29 </script> | 29 </script> |
30 </head> | 30 </head> |
31 <body> | 31 <body> |
32 <div id="div"> | 32 <div id="div"> |
33 <span>This text should be in a box</span> | 33 <span>This text should be in a box</span> |
34 </div> | 34 </div> |
35 </body> | 35 </body> |
36 </html> | 36 </html> |
OLD | NEW |