r3533 committed - updated unit test for #3991 - Sortable: Remove absolutePosition from u...

r3533 committed - updated unit test for #3991 - Sortable: Remove absolutePosition from u...

Revision: 3533
Author: rdworth
Date: Wed Dec 23 17:18:00 2009
Log: updated unit test for #3991 - Sortable: Remove absolutePosition from
ui hash
http://code.google.com/p/jquery-ui/source/detail?r=3533
Modified:
/trunk/tests/unit/sortable/sortable_events.js
=======================================
--- /trunk/tests/unit/sortable/sortable_events.js    Thu Feb 5 23:39:52 2009
+++ /trunk/tests/unit/sortable/sortable_events.js    Wed Dec 23 17:18:00 2009
@@ -16,7 +16,6 @@
    ok(hash.helper, 'UI hash includes: helper');
    ok(hash.placeholder, 'UI hash includes: placeholder');
    ok(hash.position && (hash.position.top && hash.position.left), 'UI hash
includes: position');
-    ok(hash.absolutePosition && (hash.absolutePosition.top &&
hash.absolutePosition.left), 'UI hash includes: absolutePosition');
    ok(hash.offset && (hash.offset.top && hash.offset.left), 'UI hash
includes: offset');
    ok(hash.item, 'UI hash includes: item');
    ok(!hash.sender, 'UI hash does not include: sender');
@@ -35,7 +34,6 @@
    ok(hash.helper, 'UI hash includes: helper');
    ok(hash.placeholder, 'UI hash includes: placeholder');
    ok(hash.position && (hash.position.top && hash.position.left), 'UI hash
includes: position');
-    ok(hash.absolutePosition && (hash.absolutePosition.top &&
hash.absolutePosition.left), 'UI hash includes: absolutePosition');
    ok(hash.offset && (hash.offset.top && hash.offset.left), 'UI hash
includes: offset');
    ok(hash.item, 'UI hash includes: item');
    ok(!hash.sender, 'UI hash does not include: sender');
@@ -59,7 +57,6 @@
    ok(hash.helper, 'UI hash includes: helper');
    ok(hash.placeholder, 'UI hash includes: placeholder');
    ok(hash.position && (hash.position.top && hash.position.left), 'UI hash
includes: position');
-    ok(hash.absolutePosition && (hash.absolutePosition.top &&
hash.absolutePosition.left), 'UI hash includes: absolutePosition');
    ok(hash.offset && (hash.offset.top && hash.offset.left), 'UI hash
includes: offset');
    ok(hash.item, 'UI hash includes: item');
    ok(!hash.sender, 'UI hash does not include: sender');
@@ -77,7 +74,6 @@
    ok(hash.helper, 'UI hash includes: helper');
    ok(hash.placeholder, 'UI hash includes: placeholder');
    ok(hash.position && (hash.position.top && hash.position.left), 'UI hash
includes: position');
-    ok(hash.absolutePosition && (hash.absolutePosition.top &&
hash.absolutePosition.left), 'UI hash includes: absolutePosition');
    ok(hash.offset && (hash.offset.top && hash.offset.left), 'UI hash
includes: offset');
    ok(hash.item, 'UI hash includes: item');
    ok(!hash.sender, 'UI hash does not include: sender');
@@ -95,7 +91,6 @@
    ok(!hash.helper, 'UI should not include: helper');
    ok(hash.placeholder, 'UI hash includes: placeholder');
    ok(hash.position && (hash.position.top && hash.position.left), 'UI hash
includes: position');
-    ok(hash.absolutePosition && (hash.absolutePosition.top &&
hash.absolutePosition.left), 'UI hash includes: absolutePosition');
    ok(hash.offset && (hash.offset.top && hash.offset.left), 'UI hash
includes: offset');
    ok(hash.item, 'UI hash includes: item');
    ok(!hash.sender, 'UI hash does not include: sender');
@@ -119,7 +114,6 @@
    ok(!hash.helper, 'UI hash should not include: helper');
    ok(hash.placeholder, 'UI hash includes: placeholder');
    ok(hash.position && (hash.position.top && hash.position.left), 'UI hash
includes: position');
-    ok(hash.absolutePosition && (hash.absolutePosition.top &&
hash.absolutePosition.left), 'UI hash includes: absolutePosition');
    ok(hash.offset && (hash.offset.top && hash.offset.left), 'UI hash
includes: offset');
    ok(hash.item, 'UI hash includes: item');
    ok(!hash.sender, 'UI hash does not include: sender');
--