1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/base/crashtests/693811-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,14 @@ 1.4 +<!DOCTYPE html> 1.5 +<script> 1.6 + 1.7 +var collection = document.images; 1.8 +var other = document.embeds; 1.9 +var options = document.createElement("select").options; 1.10 +collection.toString; 1.11 +options.selectedIndex; 1.12 +Object.getPrototypeOf(collection).item = {}; 1.13 +other.toString; 1.14 +collection.toString; 1.15 +options.selectedIndex; 1.16 +options.toString; 1.17 +</script>