summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/select/option-children.html
blob: 357247b5675735fb3c59b54a2da5b816731a3f25 (plain)
1
2
3
4
5
6
7
8
9
10
11
<!doctype html>
<meta charset=utf-8>
<title>Option elements with children</title>
<body>
<script>
document.body
  .appendChild(document.createElement("select"))
  .appendChild(document.createElement("option"))
  .appendChild(document.createElement("font"))
  .appendChild(document.createTextNode("font"))
</script>