13 lines
274 B
HTML
13 lines
274 B
HTML
|
<html>
|
||
|
<body>
|
||
|
<script>
|
||
|
function loadSubframe() {
|
||
|
const frame = document.createElement("iframe");
|
||
|
frame.id = "frame";
|
||
|
frame.setAttribute("src", "./webview-will-navigate.html");
|
||
|
document.body.appendChild(frame);
|
||
|
}
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|