[webkit-changes] cvs commit:
WebCore/layout-tests/fast/dom/HTMLDocument/writeln
call-expected.txt call.html multiple-calls-expected.txt
multiple-calls.html
Geoffrey
ggaren at opensource.apple.com
Wed Jun 29 17:22:23 PDT 2005
ggaren 05/06/29 17:22:23
Modified: . ChangeLog
Added: layout-tests/fast/dom/HTMLDocument/writeln call-expected.txt
call.html multiple-calls-expected.txt
multiple-calls.html
Log:
DOM compatibility tests for HTMLDocument::writeln
Reviewed by justing.
Test cases added:
* layout-tests/fast/dom/HTMLDocument/writeln/call-expected.txt: Added.
* layout-tests/fast/dom/HTMLDocument/writeln/call.html: Added.
* layout-tests/fast/dom/HTMLDocument/writeln/multiple-calls-expected.txt: Added.
* layout-tests/fast/dom/HTMLDocument/writeln/multiple-calls.html: Added.
Revision Changes Path
1.4337 +13 -0 WebCore/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/WebCore/ChangeLog,v
retrieving revision 1.4336
retrieving revision 1.4337
diff -u -r1.4336 -r1.4337
--- ChangeLog 30 Jun 2005 00:19:48 -0000 1.4336
+++ ChangeLog 30 Jun 2005 00:22:16 -0000 1.4337
@@ -1,3 +1,16 @@
+2005-06-29 Geoffrey Garen <ggaren at apple.com>
+
+ DOM compatibility tests for HTMLDocument::writeln
+
+ Reviewed by justing.
+
+ Test cases added:
+
+ * layout-tests/fast/dom/HTMLDocument/writeln/call-expected.txt: Added.
+ * layout-tests/fast/dom/HTMLDocument/writeln/call.html: Added.
+ * layout-tests/fast/dom/HTMLDocument/writeln/multiple-calls-expected.txt: Added.
+ * layout-tests/fast/dom/HTMLDocument/writeln/multiple-calls.html: Added.
+
2005-06-29 Bruce DiBello <bdibello at apple.com>
Reviewed by Geoff Garen.
1.1 WebCore/layout-tests/fast/dom/HTMLDocument/writeln/call-expected.txt
Index: call-expected.txt
===================================================================
Tests: calling HTMLDocument::writeln
Condition(s):
Success message: success
Failure message: [no output]
success
1.1 WebCore/layout-tests/fast/dom/HTMLDocument/writeln/call.html
Index: call.html
===================================================================
<html>
<head>
<script>
function test() {
if (window.layoutTestController) {
window.layoutTestController.dumpAsText();
}
document.writeln("success");
}
</script>
</head>
<body>
<p>Tests: calling HTMLDocument::writeln</p>
<p>Condition(s): </p>
<p> Success message: success </p>
<p>Failure message: [no output] </p>
<hr>
</body>
<script>test()</script>
</html>
1.1 WebCore/layout-tests/fast/dom/HTMLDocument/writeln/multiple-calls-expected.txt
Index: multiple-calls-expected.txt
===================================================================
Tests: calling HTMLDocument::writeln
Condition(s): multiple calls
Success message:
line 1
line 2
Failure message:
line 1line 2
line 1
line 2
1.1 WebCore/layout-tests/fast/dom/HTMLDocument/writeln/multiple-calls.html
Index: multiple-calls.html
===================================================================
<html>
<head>
<script>
function test() {
if (window.layoutTestController) {
window.layoutTestController.dumpAsText();
}
document.writeln("<pre>");
document.writeln("line 1");
document.writeln("line 2");
document.writeln("</pre>");
}
</script>
</head>
<body>
<p>Tests: calling HTMLDocument::writeln</p>
<p>Condition(s): multiple calls</p>
<p>
Success message:
<pre>
line 1
line 2
</pre>
</p>
<p>Failure message:
<pre>
line 1line 2
</pre>
</p>
<hr>
</body>
<script>test()</script>
</html>
More information about the webkit-changes
mailing list