2008-11-04 Anders Carlsson <andersca@apple.com>
[webkit/qt.git] / LayoutTests / fast / dom / ImageDocument-image-deletion.html
blob9005232934a7ba1946f3fc78e05253daa7b838b0
1 <head>
2 <script>
3 if (window.layoutTestController)
4 layoutTestController.dumpAsText();
6 function test()
8 var f = document.getElementById("frame");
9 f.contentDocument.open();
10 f.contentDocument.close();
12 </script>
13 </head>
14 <body onload="test()">
15 <p>
16 Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=16097">http://bugs.webkit.org/show_bug.cgi?id=16097</a>
17 Safari crashes during load of LexisNexis search results</i>.
18 </p>
19 <p>
20 Testing that destroying the image element in a standalone image
21 document does not lead to a crash.
22 </p>
23 <iframe src="resources/apple.gif" id="frame"></iframe>
24 </body>