WAIC-TEST-0012-01
テキスト入力フィールドとラベル (label 要素)
label 要素に指定したラベルとテキスト入力フィールドが関連付いているかの確認
1.1.1, 1.3.1, 3.3.2, 4.1.2
H44
<div>
<div id="labelrow">
<label for="lastname">姓</label> <label for="firstname">名</label>
</div>
<div>
1. <input type="text" name="lastname" id="lastname">
2. <input type="text" name="firstname" id="firstname">
</div>
<div class="inputInLabel">
3. <label>住所: <input type="text" name="address" id="address"></label>
</div>
<div class="inputInLabel">
4. <label><input type="text" name="tel" id="tel">:電話番号</label> ハイフンは不要
</div>
</div>
ラベル “姓” をクリックすると“1.”、“名” は“2.”、“住所” は“3.” 、“電話番号” は“4.”のテキスト入力フィールドにそれぞれフォーカスが移動する
なし
テストファイルを操作し、結果を確認
次の 1. 〜 2. をすべて満たしている
type=”text” を持つ input 要素 , label 要素