Bumping manifests a=b2g-bump
[gecko.git] / layout / reftests / bugs / 391994-1.html
blobb9c9cc65d817f7e66ded5f859b5bb35a93f3293a
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <script>
5 var sel = document.createElement("select");
6 sel.appendChild(new Option(1));
7 var opt = new Option(2);
8 opt.setAttribute("selected", "selected");
9 sel.appendChild(opt);
10 document.body.appendChild(sel);
11 </script>
12 </body>
13 </html>