|
| 1 | +<!DOCTYPE html> |
| 2 | +<link rel=author href="mailto:jarhar@chromium.org"> |
| 3 | +<link rel=help href="https://github.com/whatwg/html/issues/10317"> |
| 4 | +<script src="/resources/testharness.js"></script> |
| 5 | +<script src="/resources/testharnessreport.js"></script> |
| 6 | + |
| 7 | +<select> |
| 8 | + <option id=img> |
| 9 | + text node |
| 10 | + <img alt="img alt"> |
| 11 | + <img id=withalt alt=" img alt with spaces "> |
| 12 | + <img id=noalt> |
| 13 | + </option> |
| 14 | + <option id=svg> |
| 15 | + text node |
| 16 | + <svg> |
| 17 | + <title>svg title</title> |
| 18 | + text node in svg |
| 19 | + </svg> |
| 20 | + </option> |
| 21 | +</select> |
| 22 | + |
| 23 | +<script> |
| 24 | +test(() => { |
| 25 | + const imgChild1 = document.createElement('span'); |
| 26 | + imgChild1.textContent = 'child of img element'; |
| 27 | + document.getElementById('withalt').appendChild(imgChild1); |
| 28 | + |
| 29 | + const imgChild2 = document.createElement('span'); |
| 30 | + imgChild2.textContent = 'child of img element'; |
| 31 | + document.getElementById('noalt').appendChild(imgChild2); |
| 32 | + |
| 33 | + const imgOption = document.getElementById('img'); |
| 34 | + const imgTextWithAlt = 'text node img alt img alt with spaces'; |
| 35 | + const imgTextWithoutAlt = 'text node child of img element child of img element'; |
| 36 | + assert_equals(imgOption.text, imgTextWithAlt, |
| 37 | + 'option.text should include <img> alt text.'); |
| 38 | + assert_equals(imgOption.label, imgTextWithAlt, |
| 39 | + 'option.label should include <img> alt text.'); |
| 40 | + assert_equals(imgOption.value, imgTextWithoutAlt, |
| 41 | + 'option.value should not include <img> alt text.'); |
| 42 | +}, 'option.label and option.text should include alt text of <img> elements.'); |
| 43 | + |
| 44 | +test(() => { |
| 45 | + const svgOption = document.getElementById('svg'); |
| 46 | + const svgText = 'text node svg title text node in svg'; |
| 47 | + assert_equals(svgOption.text, svgText, |
| 48 | + 'option.text should include all <svg> text nodes.'); |
| 49 | + assert_equals(svgOption.label, svgText, |
| 50 | + 'option.label should include all <svg> text nodes.'); |
| 51 | + assert_equals(svgOption.value, svgText, |
| 52 | + 'option.value should include all <svg> text nodes.'); |
| 53 | +}, 'option.label and option.text should not have special logic for <svg> elements.'); |
| 54 | +</script> |
0 commit comments