summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/html-aria/name-computation-input/759.html
blob: a8505f492b456e759f7d542cccd815411ce082e4 (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="checkbox" id="test"/>
</body>
</html>