Files
electron/spec/fixtures/pages/webview.html
2025-12-25 16:16:55 -07:00

27 lines
422 B
HTML

<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>webview Host</title>
<style>
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
webview {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
</style>
</head>
<body>
<webview></webview>
</body>
</html>