[webkit-changes] cvs commit: LayoutTests/fast/dom
object-plugin-hides-properties-expected.txt
object-plugin-hides-properties.html
Geoffrey
ggaren at opensource.apple.com
Sat Nov 5 22:22:56 PST 2005
ggaren 05/11/05 22:22:56
Modified: . ChangeLog
Added: fast/dom object-plugin-hides-properties-expected.txt
object-plugin-hides-properties.html
Log:
Layout test for http://bugzilla.opendarwin.org/show_bug.cgi?id=5357
REGRESSION: Scriptable plugin hides properties of OBJECT element
* fast/dom/object-plugin-hides-properties.html: Added.
* fast/js/object-plugin-hides-properties-expected.txt: Added.
Revision Changes Path
1.74 +8 -0 LayoutTests/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/LayoutTests/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog 6 Nov 2005 05:58:14 -0000 1.73
+++ ChangeLog 6 Nov 2005 06:22:55 -0000 1.74
@@ -1,5 +1,13 @@
2005-11-05 Geoffrey Garen <ggaren at apple.com>
+ Layout test for http://bugzilla.opendarwin.org/show_bug.cgi?id=5357
+ REGRESSION: Scriptable plugin hides properties of OBJECT element
+
+ * fast/dom/object-plugin-hides-properties.html: Added.
+ * fast/js/object-plugin-hides-properties-expected.txt: Added.
+
+2005-11-05 Geoffrey Garen <ggaren at apple.com>
+
Layout test for http://bugzilla.opendarwin.org/show_bug.cgi?id=5409
slice() testcase doesn't pass
1.1 LayoutTests/fast/dom/object-plugin-hides-properties-expected.txt
Index: object-plugin-hides-properties-expected.txt
===================================================================
This test checks for a regression where scriptable plugins hide properties of the OBJECT element. If the test passes, you will see a "PASSED" message below.
PASSED
1.1 LayoutTests/fast/dom/object-plugin-hides-properties.html
Index: object-plugin-hides-properties.html
===================================================================
<html>
<head>
<title>Plugin hides OBJECT's properties</title>
<script type="text/javascript">
function test()
{
if (window.layoutTestController)
layoutTestController.dumpAsText();
var result = document.getElementById('obj').children == undefined ? "FAILED" : "PASSED";
document.getElementById("result").innerText = result;
}
</script>
</head>
<body onload="test()">
<p>
This test checks for a regression where scriptable plugins hide properties of
the OBJECT element.
If the test passes, you will see a "PASSED" message below.
</p>
<p id="result"></p>
<object id="obj" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"><!-- quicktime -->
</object>
</body>
More information about the webkit-changes
mailing list