I'm running through the MDN tutorials, using the drawImage method for slicing an image. The stripped down page code looks like:
<html>
<head>
<script type="application/x-javascript">
function draw() {
var ctx = document.getElementById('canvas').getContext('2d');
ctx.drawImage(document.getElementById('frame'),0,0);
ctx.drawImage(document.getElementById('source'),33,71,104,124,21,20,87,104);
}
</script>
</head>
<body onload="draw();">
<canvas id="canvas" width="150" height="150"></canvas>
<img id="source" src="images/rhino.jpg" width="300" height="227" alt="">
<img id="frame" src="images/picture_frame.png" width="132" height="150" alt="">
</body>
</html>
When the full version is run from the MDN website, it works as expected. When copied to my local machine and loaded from a "file:///" url (with correct relative pathing for images), this throws an INDEX_SIZE_ERR on the drawImage...'source' line.
Images load as expected through the img tags.
Assigning the document.getElementById('source') to a variable and passing that variable to drawImage shows that the variable is non-null and has classWidth of 300 (through a simple alert), and still throws the error.
The ctx.drawImage(document.getElementById('frame'),0,0); line does draw to the canvas correctly.
Why is my local machine behaving differently than the web version? Security restrictions? (Newbie here, apologies if the answer is simple.)