deputat/iframe-resizer-master/test/setHeightCalculationMethod.html
2023-04-25 13:25:59 +02:00

49 lines
1.2 KiB
HTML
Executable File

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>QUnit LoadHide</title>
<link rel="stylesheet" href="resources/qunit.css" />
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture">
<div style="width:600px;">
<iframe
src="resources/frame.content.html"
width="100%"
scrolling="no"
></iframe>
</div>
</div>
<script src="resources/qunit.js"></script>
<script src="resources/jquery.js"></script>
<script src="resources/testLib.js"></script>
<script src="../js/ie8.polyfils.min.js"></script>
<script src="../js/iframeResizer.min.js"></script>
<script>
'use strict'
var msgId = '[iFrameSizerTest]:'
asyncTest('setHeightCalculationMethod', function() {
var evtCounter = 0
iFrameResize({
//log:true,
interval: 0,
onResized: function(messageData) {
switch ('' + ++evtCounter) {
case '1':
sendMessage('setHeightCalculationMethod')
break
default:
ok(true, 'iFrame detected content change')
start()
}
}
})
})
</script>
</body>
</html>