aboutsummaryrefslogtreecommitdiffstats
path: root/test/data/css/cssWidthBrowserZoom.html
diff options
context:
space:
mode:
Diffstat (limited to 'test/data/css/cssWidthBrowserZoom.html')
-rw-r--r--test/data/css/cssWidthBrowserZoom.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/data/css/cssWidthBrowserZoom.html b/test/data/css/cssWidthBrowserZoom.html
index 99f87ea29..133daf622 100644
--- a/test/data/css/cssWidthBrowserZoom.html
+++ b/test/data/css/cssWidthBrowserZoom.html
@@ -7,6 +7,7 @@
zoom: 1.1;
}
#test {
+ position: absolute;
width: 100px;
height: 100px;
padding: 10px;
@@ -20,7 +21,10 @@
<script src="../../jquery.js"></script>
<script src="../iframeTest.js"></script>
<script>
- startIframeTest( jQuery( "#test" ).css( 'width' ) );
+ startIframeTest(
+ jQuery( "#test" ).css( 'width' ),
+ jQuery( "#test" ).css( 'width', '100px' ).css( 'width' )
+ );
</script>
</body>
</html>