summaryrefslogtreecommitdiffstats
path: root/dom/html/crashtests/604807.html
blob: a519a778ff20ea6ec37e7c79570debd04533f5fe (plain)
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<script>
try {
  var selectElem = document.createElementNS("http://www.w3.org/1999/xhtml", "select");
  selectElem.QueryInterface(Components.interfaces.nsISelectElement);
  selectElem.getOptionIndex(null, 0, true);
} catch (e) {
}
</script>