initial import
[vuplus_webkit] / Source / WebKit / qt / tests / qdeclarativewebview / resources / newwindows.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script type="text/javascript">
5 <!--
6 function clickTheLink()
7 {
8     var ev = document.createEvent('MouseEvents');
9     ev.initEvent( "click", true, false );
10     document.getElementById('thelink').dispatchEvent(ev);
11 }
12 // -->
13 </script>
14 </head>
15 <body>
16 <h1>Multiple windows...</h1>
17
18 <a id=thelink target="_blank" href="newwindows.html">Popup!</a>
19 </body>
20 </html>