electron/spec/fixtures/api/reload-page.html

18 lines
335 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script>
const {remote} = require('electron')
const browserWindow = remote.getCurrentWindow()
browserWindow.webContents.on('remote-handler', () => { })
browserWindow.reload()
</script>
</head>
<body>
</body>
</html>