Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
8a2c8a97dfd3af0fdb68d49fc58e1163aca8085a
/
.
/
LayoutTests
/
fast
/
forms
/
select
/
selected-option-update-inner-html.html
blob: 1e07eb2b93dfd28b789c226e0ae09b62ac5541d9 [
file
]
<!DOCTYPE html>
<html>
<body>
<select>
<option>
Foo
</option>
</select>
<script>
addEventListener
(
"load"
,
()
=>
{
let option
=
document
.
querySelector
(
"option"
);
option
.
innerHTML
=
"Bar"
;
});
</script>
</body>
</html>