| Index: LayoutTests/svg/custom/draw-image-crash.html
|
| diff --git a/LayoutTests/svg/custom/draw-image-crash.html b/LayoutTests/svg/custom/draw-image-crash.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a1aba9eed95f985de19bc64511495336d996b757
|
| --- /dev/null
|
| +++ b/LayoutTests/svg/custom/draw-image-crash.html
|
| @@ -0,0 +1,23 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +This test passes if it does not crash and 'PASS' is printed.<br/>
|
| +<img id="crash" src="resources/draw-image-crash.svg"></img>
|
| +<script>
|
| +if (window.testRunner)
|
| + testRunner.waitUntilDone();
|
| +
|
| +setTimeout(function() {
|
| + if (location.hash == '#done') {
|
| + document.write('PASS');
|
| + if (window.testRunner) {
|
| + testRunner.notifyDone();
|
| + testRunner.dumpAsText();
|
| + }
|
| + } else {
|
| + location.hash = 'done';
|
| + window.location.reload();
|
| + }
|
| +}, 0);
|
| +</script>
|
| +</html>
|
| +
|
|
|