- Temporarily remove calls that are causing subsequent tests in DRT to fail.
Filled http://bugs.webkit.org/show_bug.cgi?id=16510 to track the issue.
* http/tests/security/cross-frame-access-history-expected.txt:
* http/tests/security/cross-frame-access-history.html:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@28844
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2007-12-18 Sam Weinig <sam@webkit.org>
+
+ Reviewed by Geoffrey.
+
+ - Temporarily remove calls that are causing subsequent tests in DRT to fail.
+ Filled http://bugs.webkit.org/show_bug.cgi?id=16510 to track the issue.
+
+ * http/tests/security/cross-frame-access-history-expected.txt:
+ * http/tests/security/cross-frame-access-history.html:
+
2007-12-18 Darin Adler <darin@apple.com>
- fix failing regression test
PASS: canGet('targetWindow.history.back') should be 'true' and is.
PASS: canGet('targetWindow.history.forward') should be 'true' and is.
PASS: canGet('targetWindow.history.go') should be 'true' and is.
-PASS: canCall('targetWindow.history.back') should be 'true' and is.
-PASS: canCall('targetWindow.history.forward') should be 'true' and is.
-PASS: canCall('targetWindow.history.go', '-1') should be 'true' and is.
PASS: canGet('targetWindow.history.toString') should be 'true' and is.
PASS: toString('targetWindow.history') should be '[object History]' and is.
shouldBeTrue("canGet('targetWindow.history.back')");
shouldBeTrue("canGet('targetWindow.history.forward')");
shouldBeTrue("canGet('targetWindow.history.go')");
- shouldBeTrue("canCall('targetWindow.history.back')");
- shouldBeTrue("canCall('targetWindow.history.forward')");
- shouldBeTrue("canCall('targetWindow.history.go', '-1')");
+
+ // FIXME: Calling these currently cause the subsequent test to include a dump of this test's render tree.
+ // (see http://bugs.webkit.org/show_bug.cgi?id=16510)
+ // shouldBeTrue("canCall('targetWindow.history.back')");
+ // shouldBeTrue("canCall('targetWindow.history.forward')");
+ // shouldBeTrue("canCall('targetWindow.history.go', '-1')");
shouldBeTrue("canGet('targetWindow.history.toString')");
shouldBe("toString('targetWindow.history')", "'[object History]'");