609.html (433B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 5 <title>Title attribute, no aria-label, aria-labelledby</title> 6 </head> 7 <body> 8 <input id="test" type="text" aria-labelledby="ID1 ID2 ID3"> 9 <p id="ID1">Here is some labelledby text for ID1</p> 10 <p id="ID2">Also labelledby text ID2</p> 11 <p id="ID3">Additional labelledby text ID3</p> 12 </body> 13 </html>