Corrected 661: test file did not match testable statement
authorRichard Schwerdtfeger <schwer@us.ibm.com>
Wed, 14 Nov 2012 11:37:51 -0600
changeset 60 95fd7c90a4c2
parent 59 9f6676f9113a
child 61 7000c5672879
Corrected 661: test file did not match testable statement
ARIA/1.0/tests/test-files/name-computation-input/661.html
--- a/ARIA/1.0/tests/test-files/name-computation-input/661.html	Wed Nov 14 11:30:25 2012 -0600
+++ b/ARIA/1.0/tests/test-files/name-computation-input/661.html	Wed Nov 14 11:37:51 2012 -0600
@@ -3,15 +3,15 @@
 <html>
    <head>
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-      <title>Checkbox input with @title and :before and :after content rule</title>
-	  <style type="text/css">
-         input#test:before { content: "foo"; }
-         input#test:after { content: "baz"; }
-	  </style>
+      <title>Text input with @title and :before and :after content rule</title>
+         <style type="text/css">
+        label:before { content: "foo"; }
+        label:after { content: "baz"; }
+      </style>
    </head>
    <body>
       <form>
-         <input id="test" type="checkbox" name="test" title="bar">
-	  </form>
+         <label for="test" title="bar"><input id="test" type="checkbox" name="test" title="bar"></label> 
+      </form>
    </body>
 </html>