Skip to content

Commit c179818

Browse files
committedJan 16, 2025
Bug 1940514 [wpt PR 49973] - Include <img> alt text in <option> labels, a=testonly
Automatic update from web-platform-tests Include <img> alt text in <option> labels Discussion: whatwg/html#10317 Change-Id: Ie6ed230eb75d3ec24c51c76d587a11dde3d44b5a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6137091 Reviewed-by: David Baron <dbaronchromium.org> Commit-Queue: Joey Arhar <jarharchromium.org> Cr-Commit-Position: refs/heads/main{#1404536} -- wpt-commits: 061274f978d6b57e5e6bc4ee2cd7a882d886bb91 wpt-pr: 49973 UltraBlame original commit: ae399208478ed46aed5d329251e91d83b9dc76dc
1 parent 5333bc0 commit c179818

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
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

Comments
 (0)
Please sign in to comment.