diff options
author | Brandon Aaron <brandon.aaron@gmail.com> | 2009-09-15 19:15:04 +0000 |
---|---|---|
committer | Brandon Aaron <brandon.aaron@gmail.com> | 2009-09-15 19:15:04 +0000 |
commit | daffb954e397bd5d9f8e9aaedab6c0baa9609e1e (patch) | |
tree | bba380b01eaed1fc417e96f5cc746814d89c3b3d /test/data/offset | |
parent | f55fb36e54eb82b112fa7af2c9b2c28c3a1c38cf (diff) | |
download | jquery-daffb954e397bd5d9f8e9aaedab6c0baa9609e1e.tar.gz jquery-daffb954e397bd5d9f8e9aaedab6c0baa9609e1e.zip |
offset is now a setter
Diffstat (limited to 'test/data/offset')
-rw-r--r-- | test/data/offset/relative.html | 2 | ||||
-rw-r--r-- | test/data/offset/static.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/data/offset/relative.html b/test/data/offset/relative.html index 89aae83e4..55f0da83f 100644 --- a/test/data/offset/relative.html +++ b/test/data/offset/relative.html @@ -6,7 +6,7 @@ <title>relative</title> <style type="text/css" media="screen"> body { margin: 1px; padding: 5px; } - div.relative { position: relative; margin: 1px; border: 2px solid #000; padding: 5px; width: 100px; height: 100px; background: #fff; overflow: hidden; } + div.relative { position: relative; top: 0; left: 0; margin: 1px; border: 2px solid #000; padding: 5px; width: 100px; height: 100px; background: #fff; overflow: hidden; } #relative-2 { top: 20px; left: 20px; } #marker { position: absolute; border: 2px solid #000; width: 50px; height: 50px; background: #ccc; } </style> diff --git a/test/data/offset/static.html b/test/data/offset/static.html index 10116af65..6a499298d 100644 --- a/test/data/offset/static.html +++ b/test/data/offset/static.html @@ -6,7 +6,7 @@ <title>static</title> <style type="text/css" media="screen"> body { margin: 1px; padding: 5px; } - div.static { position: static; margin: 1px; border: 2px solid #000; padding: 5px; width: 100px; height: 100px; background: #fff; overflow: hidden; } + div.static { position: static; top: 0; left: 0; margin: 1px; border: 2px solid #000; padding: 5px; width: 100px; height: 100px; background: #fff; overflow: hidden; } #static-2 { top: 20px; left: 20px; } #marker { position: absolute; border: 2px solid #000; width: 50px; height: 50px; background: #ccc; } </style> |