summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/html-aria/name-computation-input/659.html
blob: 5e9b439b089694f3106a710adc17d6be46626ef0 (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" title="bar"><input id="test" type="text" name="test" title="bar"></label> 
      </form>
   </body>
</html>