spec: "new-window" event of <webview>
This commit is contained in:
parent
fefeb39757
commit
9c92f2e692
3 changed files with 37 additions and 0 deletions
13
spec/fixtures/pages/target-name.html
vendored
Normal file
13
spec/fixtures/pages/target-name.html
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
<html>
|
||||
<body>
|
||||
<a id="a", href="http://host" target="target">link</a>
|
||||
<script type="text/javascript" charset="utf-8">
|
||||
var event = new MouseEvent('click', {
|
||||
'view': window,
|
||||
'bubbles': true,
|
||||
'cancelable': true
|
||||
});
|
||||
document.getElementById('a').dispatchEvent(event);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
7
spec/fixtures/pages/window-open.html
vendored
Normal file
7
spec/fixtures/pages/window-open.html
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
<html>
|
||||
<body>
|
||||
<script type="text/javascript" charset="utf-8">
|
||||
window.open('http://host', 'host');
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue