| <html> |
| <head> |
| <title>Iframe with Elements</title> |
| <style> |
| .container { |
| /* Place some padding around the iframe so it's not aligned with either |
| edge of the viewport. */ |
| margin: 20px; |
| } |
| </style> |
| </head> |
| <body> |
| <h1 id="title">IFrame with Elements</h1> |
| <p id="desc"> |
| This is an HTML file with an iframe inside (and after) some named elements, |
| pointing to another document with named elements. This can be used to test |
| DeepQuery functionality for Kombucha tests. |
| </p> |
| <div class="container" id="container"> |
| <iframe src="links.html" id="iframe"></iframe> |
| </div> |
| </body></html> |