- adding a test for http://bugs.webkit.org/show_bug.cgi?id=16097
* fast/dom/ImageDocument-image-deletion-expected.txt: Added.
* fast/dom/ImageDocument-image-deletion.html: Added.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@28436
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2007-12-05 Dan Bernstein <mitz@apple.com>
+
+ Reviewed by Adam Roben.
+
+ - adding a test for http://bugs.webkit.org/show_bug.cgi?id=16097
+
+ * fast/dom/ImageDocument-image-deletion-expected.txt: Added.
+ * fast/dom/ImageDocument-image-deletion.html: Added.
+
2007-12-04 Adele Peterson <adele@apple.com>
Reviewed by Darin.
--- /dev/null
+Test for http://bugs.webkit.org/show_bug.cgi?id=16097 Safari crashes during load of LexisNexis search results.
+
+Testing that destroying the image element in a standalone image document does not lead to a crash.
+
+
--- /dev/null
+<head>
+ <script>
+ if (window.layoutTestController)
+ layoutTestController.dumpAsText();
+
+ function test()
+ {
+ var f = document.getElementById("frame");
+ f.contentDocument.open();
+ f.contentDocument.close();
+ }
+ </script>
+</head>
+<body onload="test()">
+ <p>
+ Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=16097">http://bugs.webkit.org/show_bug.cgi?id=16097</a>
+ Safari crashes during load of LexisNexis search results</i>.
+ </p>
+ <p>
+ Testing that destroying the image element in a standalone image
+ document does not lead to a crash.
+ </p>
+ <iframe src="resources/apple.gif" id="frame"></iframe>
+</body>