https://bugzilla.novell.com/show_bug.cgi?id=357350
Summary: Chained property access with objects that aren't
dependency objects fail
Product: Moonlight
Version: unspecified
Platform: Other
OS/Version: Other
Status: NEW
Severity: Normal
Priority: P5 - None
Component: plugin
AssignedTo: [email protected]
ReportedBy: [EMAIL PROTECTED]
QAContact: [email protected]
Found By: ---
Test case in test/js/props.html shows this issue:
testNonDOPropertyChaining: function ()
{
var da = $plugin ().content.createFromXaml ("<TimelineMarker />");
this.assertEqual (null, da.Time);
da.Time = "0";
this.assertEqual (0.0, da.Time.seconds);
da.Time.seconds = 1;
this.assertEqual (1.0, da.Time.seconds);
da.Time.seconds = 1.1;
this.assertEqual (1.1, Math.round (da.Time.seconds * 1000) / 1000);
}
currently da.Time.seconds is always 0.
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
_______________________________________________
mono-bugs maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs