[webkit-changes] cvs commit: WebCore/manual-tests target_new-1.html
target_new.html
Vicki
vicki at opensource.apple.com
Thu Jul 14 11:08:05 PDT 2005
vicki 05/07/14 11:08:05
Modified: . ChangeLog
Added: manual-tests target_new-1.html target_new.html
Log:
- added manual tests for <rdar://problem/4172380> [GENENTECH] window.opener not available
when child opened via target="_new"
Test cases added:
* manual-tests/target_new-1.html: Added.
* manual-tests/target_new.html: Added.
Revision Changes Path
1.4424 +9 -0 WebCore/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/WebCore/ChangeLog,v
retrieving revision 1.4423
retrieving revision 1.4424
diff -u -r1.4423 -r1.4424
--- ChangeLog 14 Jul 2005 17:58:13 -0000 1.4423
+++ ChangeLog 14 Jul 2005 18:08:00 -0000 1.4424
@@ -1,3 +1,12 @@
+2005-07-14 Vicki Murley <vicki at apple.com>
+
+ - added manual tests for <rdar://problem/4172380> [GENENTECH] window.opener not available
+ when child opened via target="_new"
+
+ Test cases added:
+ * manual-tests/target_new-1.html: Added.
+ * manual-tests/target_new.html: Added.
+
2005-07-14 Geoffrey Garen <ggaren at apple.com>
- landed fix for <http://bugzilla.opendarwin.org/show_bug.cgi?id=3677>
1.1 WebCore/manual-tests/target_new-1.html
Index: target_new-1.html
===================================================================
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en"><head>
<body>
<p>Reference the opener, its properties and functions via the links below.</p>
<ol>
<li>Clicking <a href="#" onclick="alert(window.opener)">here</a> should alert "[object Window]"</li>
<li>Clicking <a href="#" onclick="alert(window.opener.aVar)">here</a> should alert "some value"</li>
<li>Clicking <a href="#" onclick="window.opener.externallyCalled()">here</a> should alert "hello from opener"</li>
</ol>
</body></html>
1.1 WebCore/manual-tests/target_new.html
Index: target_new.html
===================================================================
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<script type="text/javascript" language="javascript" charset="utf-8">
var aVar = "some value";
function externallyCalled() {
alert("hello from opener");
}
</script>
</head>
<body>
<p><b>BUG ID:</b> <a href="rdar://problem/4172380">4172380</a> [GENENTECH] window.opener not available when child opened via target="_new"</p>
<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b>
Click link below, then click links in the window that opens.</p>
<p id="success" style="background-color:palegreen; padding:3px;"><b>TEST PASS:</b>
Links in the new window that opens will alert "[object Window]", "some value", and "hello from opener".
</p>
<p id="failure" style="background-color:#FF3300; padding:3px;"><b>TEST FAIL:</b>
First link in the new window that opens will alert "null", and the other two links will not work at all.
</p>
<a href="target_new-1.html" target="_new">Click this link to begin test</a>
</body>
</html>
More information about the webkit-changes
mailing list