diff options
author | Richard Worth <rdworth@gmail.com> | 2010-03-12 01:48:45 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2010-03-12 01:48:45 +0000 |
commit | a27b789cfd28434daf344548e3d6573a963a166a (patch) | |
tree | 9ace31fb29a6be2e08372dd4b7aabb42403b5254 | |
parent | 012da0cab72286a43cd14b33dfb9deed1fd660ba (diff) | |
download | jquery-ui-a27b789cfd28434daf344548e3d6573a963a166a.tar.gz jquery-ui-a27b789cfd28434daf344548e3d6573a963a166a.zip |
resizable visual test: changed alsoResize child test to have position:absolute parent and position:relative child. This is the source of the dialog issue #5323 - dialog content shifts when dialog resized from top or left
-rw-r--r-- | tests/visual/resizable/resizable_option_alsoResize_child.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/visual/resizable/resizable_option_alsoResize_child.html b/tests/visual/resizable/resizable_option_alsoResize_child.html index fbbe7953b..f322c5c35 100644 --- a/tests/visual/resizable/resizable_option_alsoResize_child.html +++ b/tests/visual/resizable/resizable_option_alsoResize_child.html @@ -19,6 +19,7 @@ </script> <style type="text/css"> #parentDiv { + position: absolute; padding: 1em; width: 200px; height: 200px; @@ -26,6 +27,7 @@ border: 1px solid gray; } #childDiv { + position:relative; padding: 1em; border: 1px solid gray; } |