Test for whether focusing and/or blurring a frame before its content has loaded causes
a crash. <rdar://problem/
4632505> REGRESSION: Crash at
WebCore::Widget::getView() const + 6
* http/tests/incremental/frame-focus-before-load-expected.txt: Added.
* http/tests/incremental/frame-focus-before-load.html: Added.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@15568
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-07-21 Geoffrey Garen <ggaren@apple.com>
+
+ RS by Adele.
+
+ Test for whether focusing and/or blurring a frame before its content has loaded causes
+ a crash. <rdar://problem/4632505> REGRESSION: Crash at
+ WebCore::Widget::getView() const + 6
+
+ * http/tests/incremental/frame-focus-before-load-expected.txt: Added.
+ * http/tests/incremental/frame-focus-before-load.html: Added.
+
2006-07-21 Maciej Stachowiak <mjs@apple.com>
Reviewed by Darin.
--- /dev/null
+This page tests whether focusing and/or blurring a frame before its content has loaded causes a crash. See rdar://problem/4632505.
+
+PASS: You didn't crash.
+
+
--- /dev/null
+<html>
+<body>
+<iframe id="slowToLoad" name="slowToLoad" src="slow-utf8-text.pl" style="visibility:hidden"></iframe>
+<script>
+if (window.layoutTestController)
+ layoutTestController.dumpAsText();
+
+slowToLoad.focus();
+slowToLoad.blur();
+</script>
+<p>This page tests whether focusing and/or blurring a frame before its content has loaded causes a crash. See rdar://problem/4632505.</p>
+<p>PASS: You didn't crash.</p>
+</body>
+</html>