[Mono-bugs] [Bug 357350] New: Chained property access with objects that aren' t dependency objects fail

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Wed Jan 30 13:20:32 EST 2008


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: mono-bugs at lists.ximian.com
        ReportedBy: rkvinge at novell.com
         QAContact: mono-bugs at lists.ximian.com
          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.


More information about the mono-bugs mailing list