Case 659: Modified test file: added a label element for :before and :after content rules since input elements do not have content.
authorJoseph Scheuhammer <clown@alum.mit.edu>
Wed, 14 Nov 2012 11:42:49 -0500
changeset 58 4ab2afd2ee50
parent 57 d0b2306b1aff
child 135 ac9b5edb7442
Case 659: Modified test file: added a label element for :before and :after content rules since input elements do not have content.
ARIA/1.0/tests/test-files/name-computation-input/659.html
--- a/ARIA/1.0/tests/test-files/name-computation-input/659.html	Tue Nov 13 13:19:10 2012 -0600
+++ b/ARIA/1.0/tests/test-files/name-computation-input/659.html	Wed Nov 14 11:42:49 2012 -0500
@@ -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>