1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Basic HTML</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<h1>Basic HTML</h1>
<div class="back"><a href=".">back</a></div>
<p>
Purpose: to verify IAT! works with HTML. This test will
alternate between testing right-clicking the edit button and
right-clicking the textarea (for the context menu).
</p>
<form action="" method="get">
<p>
Use this textarea for the tests below:
<textarea>testing area</textarea>
</p>
</form>
<ol>
<li>
Click on the edit button. Your editor should open and should contain the text from the textarea. Add the phrase “test 1” in your editor and save and exit. The textarea should be updated within a few seconds.
</li>
<li>
Right click on the edit button. Select the menu item <tt>.txt</tt>. Your editor should open and should contain the text from the textarea. Add the phrase “test 2” in your editor and save and exit. The textarea should be updated within a few seconds.
</li>
<li>
Right click on the textarea. Select the menu item <tt>It's All Text!</tt> → <tt>.txt</tt>. Your editor should open and should contain the text from the textarea. Add the phrase “test 3” in your editor and save and exit. The textarea should be updated within a few seconds.
</li>
<li>
Right click on the edit button. Select the menu item <tt>Preferences</tt>. The preferences should open. Close them.
</li>
<li>
Right click on the textarea. Select the menu item <tt>It's All Text!</tt> → <tt>Preferences</tt>. The preferences should open. Close them.
</li>
</ol>
<div class="back"><a href=".">back</a></div>
</body>
</html>
|