summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/html-aria/name-computation-input/663.html
blob: ae70b8532ab2455506875869e9011c50d1c63eba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
   <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">
        label:before { content: "foo "; }
        label:after { content: " baz"; }
      </style>
   </head>
   <body>
      <form>
         <label for="test"><input id="test" type="file" name="test" title="bar"></label> 
      </form>
   </body>
</html>