click a div to view getComputedStyle (should be 0px for all)

style="margin-left: 0;border:0" getPropertyValue('left') expected: 0px
style="margin-left: 0" getPropertyValue('left') expected: 0px
style="margin: auto;" getPropertyValue('left') expected: 0px
style="margin: auto;left: 0px" getPropertyValue('left') expected: 0px
style="margin: 1%" getPropertyValue('top') expected: 0px
style="margin: 1%;top:0" getPropertyValue('top') expected: 0px

When left or top is auto (default), Opera 9.2 returns the computed margin.