fixed test case 659 to match testable statement
authorRichard Schwerdtfeger <schwer@us.ibm.com>
Thu, 15 Nov 2012 09:23:33 -0600
changeset 63 49deb02a9e3b
parent 62 3f0af1c8aca4
child 64 df9142e8914e
fixed test case 659 to match testable statement
ARIA/1.0/tests/test-files/name-computation-input/659.html
--- a/ARIA/1.0/tests/test-files/name-computation-input/659.html	Wed Nov 14 11:45:37 2012 -0600
+++ b/ARIA/1.0/tests/test-files/name-computation-input/659.html	Thu Nov 15 09:23:33 2012 -0600
@@ -4,14 +4,14 @@
    <head>
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
       <title>Text 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>
+         <style type="text/css">
+        label:before { content: "foo"; }
+        label:after { content: "baz"; }
+      </style>
    </head>
    <body>
       <form>
-         <input id="test" type="text" name="test" title="bar">
-	  </form>
+         <label for="test" title="bar"><input id="test" type="text" name="test" title="bar"></label> 
+      </form>
    </body>
 </html>