[Pkg-mozext-commits] [itsalltext] 225/459: * added back button * added style page for Aerik's bugs

David Prévot taffit at moszumanska.debian.org
Tue Feb 24 23:26:24 UTC 2015


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository itsalltext.

commit d8113ceb0f7e378e806a73e9cf96f0a5635f1239
Author: docwhat at gerf.org <docwhat at gerf.org>
Date:   Mon Jun 4 09:27:08 2007 -0400

    * added back button
    * added style page for Aerik's bugs
---
 tests/basic.html    |  3 +++
 tests/basic.xhtml   |  4 ++++
 tests/extended.html |  3 +++
 tests/hidden.html   |  3 +++
 tests/index.html    | 11 +++++++++++
 tests/setup.html    |  3 +++
 tests/style.css     |  6 ++++++
 tests/style.html    | 45 +++++++++++++++++++++++++++++++++++++++++++++
 8 files changed, 78 insertions(+)

diff --git a/tests/basic.html b/tests/basic.html
index bcb004f..f5ec980 100644
--- a/tests/basic.html
+++ b/tests/basic.html
@@ -9,6 +9,8 @@
   <body>
     <h1>Basic HTML</h1>
 
+    <div class="back"><a href=".">back</a></div>
+
     <p>
       Purpose: to verify IAT! works with HTML.
     </p>
@@ -39,6 +41,7 @@
       </li>
     </ol>
 
+    <div class="back"><a href=".">back</a></div>
   </body>
 </html>
 
diff --git a/tests/basic.xhtml b/tests/basic.xhtml
index ba9df0b..0a3eb87 100644
--- a/tests/basic.xhtml
+++ b/tests/basic.xhtml
@@ -10,6 +10,8 @@
   <body>
     <h1>Basic XHTML</h1>
 
+    <div class="back"><a href=".">back</a></div>
+
     <p>
       Purpose: to verify IAT! works with XHTML.
     </p>
@@ -43,6 +45,8 @@
       </li>
     </ol>
 
+    <div class="back"><a href=".">back</a></div>
+
   </body>
 </html>
 
diff --git a/tests/extended.html b/tests/extended.html
index 33fcf22..e271e8c 100644
--- a/tests/extended.html
+++ b/tests/extended.html
@@ -9,6 +9,8 @@
   <body>
     <h1>Extended Attributes</h1>
 
+    <div class="back"><a href=".">back</a></div>
+
     <p>
       Purpose: to verify that the extended attributes work.
     </p>
@@ -36,6 +38,7 @@ main()
       </ol>
     </form>
 
+    <div class="back"><a href=".">back</a></div>
   </body>
 </html>
 
diff --git a/tests/hidden.html b/tests/hidden.html
index 6141eed..1ece1cb 100644
--- a/tests/hidden.html
+++ b/tests/hidden.html
@@ -45,6 +45,8 @@
   <body>
     <h1>Hidden Textareas</h1>
 
+    <div class="back"><a href=".">back</a></div>
+
     <p>
       Purpose: to verify that the edit button does not show up for hidden textareas.
     </p>
@@ -93,6 +95,7 @@
       </ol>
     </form>
 
+    <div class="back"><a href=".">back</a></div>
   </body>
 </html>
 
diff --git a/tests/index.html b/tests/index.html
index d68ee50..0c74149 100644
--- a/tests/index.html
+++ b/tests/index.html
@@ -13,12 +13,23 @@
       These are a series of tests for verifying that <a href="http://addons.mozilla.org/firefox/4125">It's All Text!</a> is working correctly.  I'll be adding more tests to these pages as I discover bugs.
     </p>
 
+    <p>
+      When reporting a problem for a specific test, please include:
+    </p>
+    <ul>
+      <li>What URL you were testing.</li>
+      <li>The number of the test.</li>
+      <li>What happened as you performed the test. Make sure you go back to previous tests if you started seeing odd, but not invalid, behavior.</li>
+      <li>Include what you thought should have happened if it doesn't match what was explained in the test.</li>
+    </ul>
+
     <ol>
       <li><a href="setup.html">Setup Tests</a></li>
       <li><a href="basic.html">Basic HTML</a></li>
       <li><a href="basic.xhtml">Basic XHTML</a></li>
       <li><a href="extended.html">Extended Attributes</a></li>
       <li><a href="hidden.html">Hidden Textareas</a></li>
+      <li><a href="style.html">Styles</a></li>
     </ol>
 
     <hr>
diff --git a/tests/setup.html b/tests/setup.html
index b14f7ae..9657e0f 100644
--- a/tests/setup.html
+++ b/tests/setup.html
@@ -9,6 +9,8 @@
   <body>
     <h1>Setup Tests</h1>
 
+    <div class="back"><a href=".">back</a></div>
+
     <p>
       Purpose: to verify that a new version of IAT! has been setup correctly.
     </p>
@@ -45,6 +47,7 @@
       </li>
     </ol>
 
+    <div class="back"><a href=".">back</a></div>
   </body>
 </html>
 
diff --git a/tests/style.css b/tests/style.css
index a860121..deee5e7 100644
--- a/tests/style.css
+++ b/tests/style.css
@@ -12,3 +12,9 @@ tt { color: #080; font-weight: bold; font-size: 1.2em; }
 ol li, ul li, p { line-height: 1.2em; margin: 0.4em; }
 
 .boxed { border: 1px solid #228; min-height: 4em; }
+.back { float: right;}
+.back a { background: white; color: blue; border: 1px solid blue;
+          text-decoration: none; padding: 0.5ex 1ex; }
+.back a:hover { background: #def; }
+
+.note { font-size: xx-small; }
diff --git a/tests/style.html b/tests/style.html
new file mode 100644
index 0000000..931e457
--- /dev/null
+++ b/tests/style.html
@@ -0,0 +1,45 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+  <head>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+    <title>Styles</title>
+    <link rel="stylesheet" href="style.css" type="text/css">
+    <style type="text/css">
+      textarea { margin: 1ex 2em; }
+      [class*="textarea"], 
+      [id*="textarea"],
+      [class*="textarea"] > *,
+      [id*="textarea"] > * {
+      width: 50% ! important;
+      }  
+    </style>
+  </head>
+
+  <body>
+    <h1>Styles</h1>
+
+    <div class="back"><a href=".">back</a></div>
+
+    <p>
+      Purpose: verify that behavior is correct with various CSS and other styles.
+    </p>
+
+    <form action="" method="get">
+      <div class="textarea">
+        <p>
+          Use this textarea for the tests below:
+        </p>
+        <textarea>testing area</textarea>
+      </div>
+    </form>
+    
+    <ol>
+      <li>
+      Verify that the edit button is its normal size and shape. <span class="note">Known bug in version <= 0.7.0</span>
+      </li>
+    </ol>
+
+    <div class="back"><a href=".">back</a></div>
+  </body>
+</html>
+

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/itsalltext.git



More information about the Pkg-mozext-commits mailing list