1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/content/base/test/reftest/test_bug920877-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,20 @@ 1.4 +<html> 1.5 +<body> 1.6 +<script> 1.7 +var img = document.createElement("img"); 1.8 +img.id = "img-ori"; 1.9 +img.src = "mixed-bmp-png.ico"; 1.10 +document.body.appendChild(img); 1.11 + 1.12 +img = document.createElement("img"); 1.13 +img.id = "img-res32"; 1.14 +img.src = "mixed-bmp-png.ico#-moz-resolution=32,32"; 1.15 +document.body.appendChild(img); 1.16 + 1.17 +img = document.createElement("img"); 1.18 +img.id = "img-res48"; 1.19 +img.src = "mixed-bmp-png.ico#-moz-resolution=48,48"; 1.20 +document.body.appendChild(img); 1.21 +</script> 1.22 +</body> 1.23 +</html>