This commit is contained in:
Stian Lund
2022-10-07 18:18:31 +02:00
parent ad998034bb
commit 0419c693f4
6 changed files with 33 additions and 45 deletions
-5
View File
@@ -1,14 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Input focus test</title>
<link rel='stylesheet' href='default.css' type='text/css' media='all'>
<link rel="icon" href="./img/decscope-logo-150x150.png" sizes="32x32">
</head>
<body>
<center>
<input type="test" autofocus>
</center>
</body>
</html>
+8 -6
View File
@@ -1,9 +1,11 @@
<!DOCTYPE html>
<html>
<body>
<script>document.write("Hello World!");</script>
<br>
<button type="button" onclick='document.getElementById("demo").innerHTML = "Hello JavaScript!"'>Click Me!</button>
<p id="demo"></p>
</body>
<head>
<title>Input focus test</title>
</head>
<body>
<script>document.write("Hello World!");</script>
<button type="button" onclick='document.getElementById("demo").innerHTML = "Hello JavaScript!"'>Click Me!</button>
<p id="demo"></p>
</body>
</html>
+16 -10
View File
@@ -3,14 +3,20 @@
<head>
<title>HTML Test Page</title>
</head>
<body>
<form name="LoginForm" action="success.html" method="get">
<p>User name:<br>
<input name="user" type="text" size="24" id="LoginFormUser"></p>
<p>Password:<br>
<input name="pwd" type="password" size="24"></p>
<p><input type="submit" value=" Submit ">
<input type="reset" value=" Reset "></p>
</form>
</body>
<body>
<form name="LoginForm" action="success.html" method="get">
<p>
User name:<br>
<input name="user" type="text" size="24" id="LoginFormUser">
</p>
<p>
Password:<br>
<input name="pwd" type="password" size="24">
</p>
<p>
<input type="submit" value=" Submit ">
<input type="reset" value=" Reset ">
</p>
</form>
</body>
</html>
+1 -2
View File
@@ -3,8 +3,7 @@
<head>
<title>HTML Test Page</title>
</head>
<body>
<p>Login successful!<br></p>
<p>Login successful!</p>
</body>
</html>
+1 -4
View File
@@ -1,10 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>
HTML Test Page
</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>HTML Test Page</title>
</head>
<body>
+7 -18
View File
@@ -2,29 +2,18 @@
<html>
<head>
<title>HTML Test Cases</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="icon" href="../favicon.ico" sizes="32x32">
<link rel="stylesheet" type="text/css" media="screen, projection" href="style.css">
</head>
<body>
<h3>Test Links</h3>
<hr>
Test Custom protocol: <a href="sftp://mab.sdf.org">mab.sdf.org</a>
<div>
Test Flash download link: <a href="https://get.adobe.com/flashplayer/">Download</a>
<div>
Test Mailto link: <a href="mailto:test@example.com">Mailto link</a>
<div>
Test TEL link: <a href="tel:1-234-567-8910">TEL link</a>
<div>
Test FTP download: <a href="ftp://ftp.sunet.se/robots.txt">Download over FTP</a>
<div>
Test "insecure" EXE download: <a href="http://ftp.matrixgames.com/pub/amazon/Afghanistan11-SetupBeta-v070.exe">Download over plain HTTP</a>
<div>
Test Custom protocol: <a href="sftp://mab.sdf.org">mab.sdf.org</a></div>
<div>Test Flash download link: <a href="https://get.adobe.com/flashplayer/">Download</a></div>
<div>Test Mailto link: <a href="mailto:test@example.com">Mailto link</a></div>
<div>Test TEL link: <a href="tel:1-234-567-8910">TEL link</a></div>
<div>Test FTP download: <a href="ftp://ftp.sunet.se/robots.txt">Download over FTP</a></div>
<div>Test "insecure" EXE download: <a href="http://ftp.matrixgames.com/pub/amazon/Afghanistan11-SetupBeta-v070.exe">Download over plain HTTP</a></div>
<hr>
Test IFrame:<br>
<iframe width="100%" height="200px" src="https://int21.de/frametest/"></iframe>
<div>
<div>Test IFrame:<br><iframe width="100%" height="200px" src="https://int21.de/frametest/"></iframe></div>
<hr>
</body>
</html>