repo.or.cz
/
jquery.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
CSS: Correctly detect scrollbox support with non-default zoom
[jquery.git]
/
test
/
data
/
css
/
cssWidthBrowserZoom.html
blob
133daf6220aaa863b483059ba68a60f8a8e23ab6
1
<!DOCTYPE
html
>
2
<html>
3
<head>
4
<meta
charset
=
"utf-8"
>
5
<style>
6
html {
7
zoom:
1.1
;
8
}
9
#test {
10
position: absolute;
11
width:
100
px;
12
height:
100
px;
13
padding:
10
px;
14
border:
1
px solid pink;
15
box-sizing: border-box;
16
}
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'
)
27
);
28
</script>
29
</body>
30
</html>