mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
90d7cc1d8b
That includes IE<8, Opera 12.x, Firefox<29, Safari<6.0 and some hacks for old Blackberry. Fixes gh-1836 Fixes gh-1701 Refs gh-1815 Refs gh-1820
26 lines
436 B
HTML
26 lines
436 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
#test {
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
width: 100px;
|
|
height: 100px;
|
|
padding: 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="test"></div>
|
|
<script src="../../jquery.js"></script>
|
|
<script>
|
|
var testWidth = jQuery( "#test" ).css( 'width' );
|
|
jQuery(function() {
|
|
window.parent.iframeCallback( testWidth );
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|