Skip to content

Commit 0eff4f0

Browse files
selectlist: Make <selectedoption> cloneNode all contents
This patch makes <selectedoption> replace its child contents with not just the textContent of the selected <option>, but instead the selected <option>'s entire child content via cloneNode(). This use case has been discussed here: openui/open-ui#571 We aren't sure yet if this will be the path forward, but prototyping it and getting feedback will help move this issue forward. Bug: 1121840 Change-Id: Ia7c007b2193a8a0777295e299b57704d72832056 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4810996 Commit-Queue: Joey Arhar <[email protected]> Reviewed-by: Mason Freed <[email protected]> Cr-Commit-Position: refs/heads/main@{#1192051}
1 parent ef2fcae commit 0eff4f0

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<!DOCTYPE html>
2+
<button>
3+
<span style="color:red">red</span> one
4+
</button>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<link rel=author href="mailto:[email protected]">
3+
<link rel=help href="https://github.com/openui/open-ui/issues/571">
4+
<link rel=match href="selectlist-selectedoption-element-cloning-ref.html">
5+
6+
<selectlist>
7+
<button type=selectlist>
8+
<selectedoption></selectedoption>
9+
</button>
10+
<option><span style="color:red">red</span> one</option>
11+
</selectlist>

0 commit comments

Comments
 (0)