summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/html-aria/name-computation-input/761.html
blob: 6c8a1de52fd22554af8c5617416cc9d2dd24cc91 (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:"fancy";
}
</style>
</head>
<body>
<label for="test">fruit</label>
<input type="file" id="test"/>
</body>
</html>