60 lines
1.6 KiB
HTML
Executable File
60 lines
1.6 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('iFrame negative interval timer ', function() {
|
|
var evtCounter = 0,
|
|
started = false
|
|
|
|
$('iframe').iFrameResize({
|
|
//log:true,
|
|
interval: -1,
|
|
onResized: function(messageData) {
|
|
switch ('' + ++evtCounter) {
|
|
case '1':
|
|
sendMessage('changeContent')
|
|
break
|
|
default:
|
|
//ok( true, 'iFrame detected content change');
|
|
if ('resize' !== messageData.type && false === started) {
|
|
started = true
|
|
ok(
|
|
'interval' === messageData.type,
|
|
'Received ' +
|
|
messageData.type +
|
|
' message back from iFrame. Expected interval.'
|
|
)
|
|
start()
|
|
}
|
|
}
|
|
}
|
|
})
|
|
})
|
|
</script>
|
|
</body>
|
|
</html>
|