CSS: Correctly detect scrollbox support with non-default zoom
[jquery.git] / test / data / css / cssWidthBrowserZoom.html
blob133daf6220aaa863b483059ba68a60f8a8e23ab6
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <style>
6 html {
7 zoom: 1.1;
9 #test {
10 position: absolute;
11 width: 100px;
12 height: 100px;
13 padding: 10px;
14 border: 1px solid pink;
15 box-sizing: border-box;
17 </style>
18 </head>
19 <body>
20 <div id="test"></div>
21 <script src="../../jquery.js"></script>
22 <script src="../iframeTest.js"></script>
23 <script>
24 startIframeTest(
25 jQuery( "#test" ).css( 'width' ),
26 jQuery( "#test" ).css( 'width', '100px' ).css( 'width' )
28 </script>
29 </body>
30 </html>