| var paragraph = document.createElement("li");
|
| paragraph.appendChild(document.createTextNode(message));
|
| document.getElementById("console").appendChild(paragraph);
|
| var canvas = document.getElementById("bigCanvas");
|
| var width = canvas.width;
|
| // We need to perform a context fetch to force allocation of
|
| var ctx = canvas.getContext("2d");
|
| print("Canvas 2d context = null!");
|
| print("Survived canvas creation attempt. Width = " + width);
|
| <canvas id="bigCanvas" width="134217728" height="1"></canvas>
|
| <p>This test checks to see if the browser survives the attempted creation
|
| of an excessively large canvas.</p>
|
| <p><ol id=console></ol></p>
|