- Electron version: 1.3.7
- Operating system: Mac OS
When you set the zoom level on the webframe that has a webview element, what the webview is showing no longer spans the full width of the page:
Without zoom:

With zoom:

HTML:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
<script src="./index.js"></script>
</head>
<body>
<webview src="http://www.github.com" id="foo" />
</body>
</html>
JS:
setTimeout(function () {
var webFrame = require('electron').webFrame;
webFrame.setZoomLevel(1);
}, 2000);