| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>This tests iframe with visibility hidden</title> | |
| <style> | |
| div { | |
| margin: 8px; | |
| width: 50px; | |
| height: 50px; | |
| background-color: green; | |
| display: inline-block; | |
| } | |
| .positioned { | |
| position: absolute; | |
| top: 8px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div></div> | |
| <div class="positioned" style="left: 100px"></div> | |
| </body> | |
| </html> |