mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 10:23:08 +09:00
13 lines
433 B
HTML
13 lines
433 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>Title attribute, no aria-label, aria-labelledby</title>
|
|
</head>
|
|
<body>
|
|
<input id="test" type="text" aria-labelledby="ID1 ID2 ID3">
|
|
<p id="ID1">Here is some labelledby text for ID1</p>
|
|
<p id="ID2">Also labelledby text ID2</p>
|
|
<p id="ID3">Additional labelledby text ID3</p>
|
|
</body>
|
|
</html>
|