Deployed the page to Github Pages.

This commit is contained in:
Batuhan Berk Başoğlu 2024-11-03 21:30:09 -05:00
parent 1d79754e93
commit 2c89899458
Signed by: batuhan-basoglu
SSH key fingerprint: SHA256:kEsnuHX+qbwhxSAXPUQ4ox535wFHu/hIRaa53FzxRpo
62797 changed files with 6551425 additions and 15279 deletions

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<title>Test issue 4876</title>
</head>
<body>
<iframe id="iframe" src="bug4876_iframe.html"></iframe>
</body>
</html>

View file

@ -0,0 +1,9 @@
<html>
<head></head>
<body>
<form >
<input type="text" id="inputText" />
<input type="submit" id="submitButton" value="submit" onclick="window.location=window.location;" />
<form>
</body>
</html>

View file

@ -0,0 +1,29 @@
<html>
<head>
<title>Deleting frame: main page</title>
</head>
<script type="text/javascript">
function remove() {
var iframe = document.getElementById("iframe1");
var myDiv = document.getElementById("myDiv");
myDiv.removeChild(iframe);
}
function addBack() {
var iframe = '<iframe src="deletingFrame_iframe2.html" marginheight="0" marginwidth="0" topmargin="0" leftmargin="0" allowtransparency="true" frameborder="0" height="200" scrolling="no" width="400" id="iframe1"></iframe>';
var myDiv2 = document.getElementById("myDiv2");
myDiv2.innerHTML = iframe;
}
</script>
<body>
<div id='myDiv'>
<iframe src="deletingFrame_iframe.html" marginheight="0" marginwidth="0" topmargin="0" leftmargin="0" allowtransparency="true"
frameborder="1" height="200" scrolling="no" width="400" id="iframe1"></iframe>
</div>
<div id='myDiv2'>
</div>
<input type='button' id='addBackFrame' value='Add back frame' onclick='addBack();' />
</body>
</html>

View file

@ -0,0 +1,8 @@
<html>
<head>
<title>Deleting frame: iframe</title>
</head>
<body>
<input type='button' id='killIframe' onclick='top.remove();' value="Kill containing iframe" />
</body>
</html>

View file

@ -0,0 +1,7 @@
<html>
<head>
<title>Deleting frame: iframe 2</title>
</head>
<body>
<div id="success">Added back</div></body>
</html>