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,6 @@
<html>
<head>
<title>click iframe</title>
</head>
<body><a id="link" href="submitted_page.html" target="_top">Click me</a></body>
</html>

View file

@ -0,0 +1,8 @@
<html>
<head>
<title>click in iframe</title>
</head>
<body>
<iframe id="ifr" src="click_iframe.html" style="margin: 200px; width: 100px; height: 50px;" />
</body>
</html>

View file

@ -0,0 +1,62 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>An element that disappears on click</title>
<style>
#under {
position: absolute;
top: 20;
left: 20;
width: 100px;
height: 100px;
background-color: white;
}
#over {
position: absolute;
top: 20;
left: 20;
width: 100px;
height: 100px;
background-color: red;
opacity: 0.5;
}
#log {
position: absolute;
top: 120px;
}
</style>
</head>
<body id="body">
<div id="under"><p id="contents">Hello</p></div>
<div id="over"></div>
<div id="log">
<p>Log:<p>
</div>
<script>
var byId = document.getElementById.bind(document);
var log = byId("log");
function handler(ev) {
log.innerHTML += "<p></p>";
log.lastElementChild.textContent = ev.type + " in " + ev.target.id + " (handled by " + ev.currentTarget.id + ")\n";
}
var under = byId("under");
var over = byId("over");
var body = document.body;
var types = ["click", "mousedown", "mouseup"];
for (var i = 0, type; (type = types[i]); ++i) {
under.addEventListener(type, handler);
over.addEventListener(type, handler);
body.addEventListener(type, handler);
}
over.addEventListener("mousedown", function () {
over.style.display = "none";
})
</script>
</body>
</html>

View file

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>Google Image Map</title>
</head>
<body>
<h1>Google Image Map</h1>
<img id="google_logo" src="google_map.png" usemap="#google_map" border="0" width="364" height="126"/>
<map id="google_map" name="google_map">
<area id="rectG" shape="rect" coords="0,0,90,100" href="mapped_page1.html" alt="area 1"/>
<area id="circleO" shape="circle" coords="120,60,30" href="mapped_page2.html" alt="area 2"/>
<area id="polyLE" shape="poly" coords="280,0,310,0,360,30,360,90,280,90" href="mapped_page3.html" alt="area 3"/>
</map>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<title>HTML5 Submit Buttons</title>
</head>
<body>
<form id="form1" action="submitted_page.html">
<label for="name">Enter your name: </label><input type="text" name="name" id="name"/>
<button id="internal_explicit_submit" type="submit">Explicit Submit</button>
<button id="internal_implicit_submit">Implicit Submit</button>
<button type="submit"><span id="internal_span_submit">Spanned Submit</span></button>
</form>
<button id="external_explicit_submit" type="submit" form="form1">Explicit Submit</button>
<button id="external_implicit_submit" form="form1">Implicit Submit</button>
</body>
</html>

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<title>Sample page for issue 5237</title>
</head>
<body>
<iframe id="search" src="issue5237_frame.html"></iframe>
</body>
</html>

View file

@ -0,0 +1 @@
<a id="submit" href="#" onclick="window.top.location = 'issue5237_target.html'; return false;">Continue</a>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>Target page for issue 5237</title>
</head>
<body>
<h1>Test passed</h1>
</map>
</body>
</html>

View file

@ -0,0 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Link that continues on next line</title>
</head>
<body>
<div style="width:300px">
<div style="float:left;width:200px;background:red">placeholder</div><a id="link" href="submitted_page.html">Link that continues on next line</a>
</div>
</body>
</html>

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<title>Target Page 1</title>
</head>
<body>
<div>Target Page 1</div>
</body>
</html>

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<title>Target Page 2</title>
</head>
<body>
<div>Target Page 2</div>
</body>
</html>

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<title>Target Page 3</title>
</head>
<body>
<div>Target Page 3</div>
</body>
</html>

View file

@ -0,0 +1,70 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>An element that disappears on click</title>
<style>
#under {
position: absolute;
top: 20px;
left: 20px;
width: 100px;
height: 100px;
background-color: white;
}
#partially_under {
position: absolute;
top: 20px;
left: 10px;
width: 100px;
height: 100px;
background-color: blue;
opacity: 0.5;
}
#over {
position: absolute;
top: 20px;
left: 20px;
width: 100px;
height: 100px;
background-color: red;
opacity: 0.5;
}
#log {
position: absolute;
top: 120px;
}
</style>
</head>
<body id="body">
<div id="under"><p id="contents">Hello</p></div>
<div id="partially_under"><p id="other_contents">Hello</p></div>
<div id="over"></div>
<div id="log">
<p>Log:<p>
</div>
<script>
var byId = document.getElementById.bind(document);
var log = byId("log");
function handler(ev) {
log.innerHTML += "<p></p>";
log.lastElementChild.textContent = ev.type + " in " + ev.target.id + " (handled by " + ev.currentTarget.id + ")\n";
}
var under = byId("under");
var over = byId("over");
var body = document.body;
var types = ["click", "mousedown", "mouseup"];
for (var i = 0, type; (type = types[i]); ++i) {
under.addEventListener(type, handler);
over.addEventListener(type, handler);
body.addEventListener(type, handler);
}
</script>
</body>
</html>

View file

@ -0,0 +1,124 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>An element that disappears on click</title>
<style>
#under_under {
position: absolute;
top: 20px;
left: 20px;
width: 100px;
height: 100px;
background-color: white;
}
#under {
position: absolute;
top: 20px;
left: 20px;
width: 100px;
height: 100px;
background-color: blue;
opacity: 0.1;
}
#over1 {
position: absolute;
top: 10px;
left: 10px;
width: 50px;
height: 50px;
background-color: red;
opacity: 0.2;
}
#over2 {
position: absolute;
top: 80px;
left: 10px;
width: 50px;
height: 50px;
background-color: red;
opacity: 0.2;
}
#over3 {
position: absolute;
top: 10px;
left: 80px;
width: 50px;
height: 50px;
background-color: red;
opacity: 0.2;
}
#over4 {
position: absolute;
top: 80px;
left: 80px;
width: 50px;
height: 50px;
background-color: red;
opacity: 0.2;
}
#over5 {
position: absolute;
top: 45px;
left: 45px;
width: 50px;
height: 50px;
background-color: red;
opacity: 0.2;
}
#log {
position: absolute;
top: 120px;
}
</style>
</head>
<body id="body">
<div id="under_under"><p id="contents">Hello</p></div>
<div id="under"><p id="other_contents">Hello</p></div>
<div id="over1"></div>
<div id="over2"></div>
<div id="over3"></div>
<div id="over4"></div>
<div id="over5"></div>
<div id="log">
<p>Log:<p>
</div>
<script>
var byId = document.getElementById.bind(document);
var log = byId("log");
function handler(ev) {
log.innerHTML += "<p></p>";
log.lastElementChild.textContent = ev.type + " in " + ev.target.id + " (handled by " + ev.currentTarget.id + ")\n";
}
var under_under = byId("under_under");
var under = byId("under");
var over1 = byId("over1");
var over2 = byId("over2");
var over3 = byId("over3");
var over4 = byId("over4");
var over5 = byId("over5");
var body = document.body;
var types = ["click", "mousedown", "mouseup"];
for (var i = 0, type; (type = types[i]); ++i) {
under_under.addEventListener(type, handler);
under.addEventListener(type, handler);
over1.addEventListener(type, handler);
over2.addEventListener(type, handler);
over3.addEventListener(type, handler);
over4.addEventListener(type, handler);
over5.addEventListener(type, handler);
body.addEventListener(type, handler);
}
</script>
</body>
</html>

View file

@ -0,0 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Link that continues on next line</title>
</head>
<body>
<div style="width:300px">
<div style="float:left;width:200px;background:red">placeholder</div><span id="span" onclick="document.location='submitted_page.html'">Span that continues on next line</span>
</div>
</body>
</html>

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<title>Submitted Successfully!</title>
</head>
<body>
<h1>Submitted Successfully!</h1>
</body>
</html>

View file

@ -0,0 +1,13 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>A wrapped element with overlapped first part</title>
</head>
<body id="body">
<div style="width:300px">
<div style="float:left;width:200px;background:green;">placeholder</div>
<div style="float:left; position:absolute;width:100px;margin-left:200px;background:red;opacity:0.5;">Over</div>
<a id="link" href="submitted_page.html">Link that continues on next line</a>
</div>
</body>
</html>