| font-family: no-such-font; |
| src: url(no-such-file.ttf); |
| <canvas id="target"></canvas> |
| canvas = document.getElementById("target"); |
| ctx = canvas.getContext('2d'); |
| ctx.font = "100px no-such-font, ahem"; |
| ctx.fillText("B", 0, 100); |
| canvas.parentNode.removeChild(canvas); |
| if (window.layoutTestController) { |
| layoutTestController.dumpAsText(true); |
| layoutTestController.waitUntilDone(); |
| ctx.fillText("A", 0, 100); |
| document.body.appendChild(canvas); |
| if (window.layoutTestController) |
| layoutTestController.notifyDone(); |