Bug 1940304 - Fix browser_sidebar_button_reset.js intermittent r=sidebar-reviewers...
[gecko.git] / layout / reftests / forms / select / option-children.html
blob357247b5675735fb3c59b54a2da5b816731a3f25
1 <!doctype html>
2 <meta charset=utf-8>
3 <title>Option elements with children</title>
4 <body>
5 <script>
6 document.body
7 .appendChild(document.createElement("select"))
8 .appendChild(document.createElement("option"))
9 .appendChild(document.createElement("font"))
10 .appendChild(document.createTextNode("font"))
11 </script>