- test for http://bugzilla.opendarwin.org/show_bug.cgi?id=6962
REGRESSION: www.usa.phillips.com crashes due to <param> with no name
* fast/replaced/object-param-no-name.html: Added.
* fast/replaced/object-param-no-name-expected.txt: Added.
- fixed test that I landed incorrectly earlier
* fast/overflow/onscroll-layer-self-destruct.html: Removed Subversion property junk.
* fast/overflow/onscroll-layer-self-destruct-expected.txt: Ditto.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@12581
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-02-05 Darin Adler <darin@apple.com>
+
+ Reviewed by Maciej.
+
+ - test for http://bugzilla.opendarwin.org/show_bug.cgi?id=6962
+ REGRESSION: www.usa.phillips.com crashes due to <param> with no name
+
+ * fast/replaced/object-param-no-name.html: Added.
+ * fast/replaced/object-param-no-name-expected.txt: Added.
+
+ - fixed test that I landed incorrectly earlier
+
+ * fast/overflow/onscroll-layer-self-destruct.html: Removed Subversion property junk.
+ * fast/overflow/onscroll-layer-self-destruct-expected.txt: Ditto.
+
2006-02-05 Darin Adler <darin@apple.com>
- rolled out Maciej's event cleanup patch, which is causing problems
--- /dev/null
+This test involves a layer that self-destructs when scrolled. If there's no crash, then the test succeeded.
+
+
--- /dev/null
+<head>
+<script>
+function test() {
+ if (window.layoutTestController)
+ layoutTestController.dumpAsText();
+ document.getElementById("it").scrollTop = 100;
+}
+</script>
+<body onload="test()">
+<p>This test involves a layer that self-destructs when scrolled. If there's no crash, then the test succeeded.</p>
+<div id="it" style="height: 100%; overflow: auto;" onscroll="style.display = 'none'">
+<div style="height: 2000px;"></div>
+</div>
+</body>
--- /dev/null
+This tests an object element with a param element inside it with no name. If the test passes it won't crash.
+
+
--- /dev/null
+<script>
+if (window.layoutTestController)
+ layoutTestController.dumpAsText();
+</script>
+<p>This tests an object element with a param element inside it with no name. If the test passes it won't crash.</p>
+<object><param></object>