summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativewebview/data/newwindows.html
blob: dd541f9b1680b6c38985f888dfa0b2c2bec00eb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html>
<head>
<script type="text/javascript">
<!--
function clickTheLink()
{
    var ev = document.createEvent('MouseEvents');
    ev.initEvent( "click", true, false );
    document.getElementById('thelink').dispatchEvent(ev);
}
// -->
</script>
</head>
<h1>Multiple windows...</h1>

<a id=thelink target="_blank" href="newwindows.html">Popup!</a>