Add manual test for #3011

This commit is contained in:
Alex Dima 2022-03-29 12:23:40 +02:00
parent ca2692a0dc
commit 0a5975d046
No known key found for this signature in database
GPG key ID: 39563C1504FDD0C9
3 changed files with 54 additions and 0 deletions

23
test/manual/iframe.html Normal file
View file

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
<body>
<h2>Monaco Editor in iframe</h2>
<input type="text" style="position: absolute; top: 60px; left: 20px" />
<iframe
src="./iframe-inner.html"
style="
position: absolute;
left: 20px;
top: 100px;
width: calc(100% - 40px);
height: 300px;
border: 1px solid silver;
"
></iframe>
</body>
</html>