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

This commit is contained in:
Richard Worth 2010-03-12 01:48:45 +00:00
parent 012da0cab7
commit a27b789cfd

View File

@ -19,6 +19,7 @@
</script> </script>
<style type="text/css"> <style type="text/css">
#parentDiv { #parentDiv {
position: absolute;
padding: 1em; padding: 1em;
width: 200px; width: 200px;
height: 200px; height: 200px;
@ -26,6 +27,7 @@
border: 1px solid gray; border: 1px solid gray;
} }
#childDiv { #childDiv {
position:relative;
padding: 1em; padding: 1em;
border: 1px solid gray; border: 1px solid gray;
} }