summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/html-aria/name-computation-input/760.html
blob: feda3261e458d2e49cc4bbad33d01e0deec7df3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>An INPUT type=text, password, checkbox, radio, file, or image, with id="test", with no aria-labelledby and no aria-label, but is referenced by a LABEL element that has an associated CSS :after content rule. </title>
<style>

label:after
{
content:" fruit"
}
</style>
</head>
<body>
<label for="test">fancy</label>
<input type="radio" id="test">
</body>
</html>