aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2010-03-12 01:48:45 +0000
committerRichard Worth <rdworth@gmail.com>2010-03-12 01:48:45 +0000
commita27b789cfd28434daf344548e3d6573a963a166a (patch)
tree9ace31fb29a6be2e08372dd4b7aabb42403b5254
parent012da0cab72286a43cd14b33dfb9deed1fd660ba (diff)
downloadjquery-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.html2
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;
}