Bug Tracker

Changes between Initial Version and Version 1 of Ticket #2736


Ignore:
Timestamp:
Apr 23, 2008, 2:31:21 AM (15 years ago)
Author:
davidserduke
Comment:

I can't claim to know the ins-and-outs of case sensitivity in attributes, so can you explain a bit more clearly what exactly the bug you see is?

Is it that case sensitivity doesn't matter? Or is there some specific case that you see as the problem?

I guess what would help most is a test case showing exactly what you expect to happen and exactly what is happening instead so we can make a more clear assessment of the problem.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2736 – Description

    initial v1  
    11Just a simple bug that I found.
    22
     3{{{
    34Command________________________________Returned________
    45Setting the offsetLeft attribute.
     
    67$("#HelpText").attr("offSetLeft", 69); - {...} works.
    78$("#HelpText").attr("OFFSETLEFT", 69); - {...} works.
     9}}}
    810
    911Retrieving the offsetLeft attribute
     12{{{
    1013$("#HelpText").attr("offSetLeft") - "69"
    1114$("#HelpText").attr("offsetLeft") - "69"
    1215$("#HelpText").attr("oFfSEtLeft") - "69"
     16}}}
    1317
    1418It appears when setting the value only the above case does not seem to work... I'm unsure about this.