en.javascript.info/3-frames-and-windows/03-cross-window-communication/sandbox.view/sandboxed.html
2019-04-02 14:01:44 +03:00

18 lines
294 B
HTML

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<button onclick="alert(123)">Click to run a script (doesn't work)</button>
<form action="http://google.com">
<input type="text">
<input type="submit" value="Submit (doesn't work)">
</form>
</body>
</html>