Case 659: Modified test file: added a label element for :before and :after content rules since input elements do not have content.
--- 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>