Bug Tracker

Show
Ignore:
Timestamp:
05/15/08 23:36:06 (8 months ago)
Author:
brandon.aaron
Message:

Updating unit tests for offset

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/jquery/test/data/offset/static.html

    r5612 r5615  
    1616                $('.static').click(function() { 
    1717                    $('#marker').css( $(this).offset() ); 
     18                    var pos = $(this).position(); 
     19                    $(this).css({ position: 'absolute', top: pos.top, left: pos.left }); 
    1820                    return false; 
    1921                });