mirror of
https://github.com/jquery/jquery.git
synced 2024-12-09 08:04:24 +00:00
26 lines
428 B
HTML
26 lines
428 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<style>
|
||
|
* {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
#test {
|
||
|
position: absolute;
|
||
|
border: 10px solid black;
|
||
|
width: 400px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="test"></div>
|
||
|
<script src="../../jquery.js"></script>
|
||
|
<script src="../iframeTest.js"></script>
|
||
|
<script>
|
||
|
var initialHeight = $('#test').outerHeight();
|
||
|
startIframeTest( initialHeight );
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|