first commit
This commit is contained in:
65
iframe-resizer-master/test/sendMessage.html
Executable file
65
iframe-resizer-master/test/sendMessage.html
Executable file
@ -0,0 +1,65 @@
|
||||
<!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 count = 0,
|
||||
msgId = '[iFrameSizerTest]:'
|
||||
|
||||
asyncTest('sendMessage (string)', function() {
|
||||
iFrameResize({
|
||||
//log:true,
|
||||
onResized: function(messageData) {
|
||||
ok(true, 'Receive init message back from iFrame.')
|
||||
sendMessage('chkSendMsg')
|
||||
},
|
||||
onMessage: function(messageData) {
|
||||
ok(
|
||||
'message: test string' === messageData.message,
|
||||
'Receive string message back from iFrame via sendMessage function.'
|
||||
)
|
||||
start()
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
asyncTest('sendMessage (object)', function() {
|
||||
iFrameResize({
|
||||
//log:true,
|
||||
onResized: function(messageData) {
|
||||
ok(true, 'Receive init message back from iFrame.')
|
||||
sendMessage('chkSendObj')
|
||||
},
|
||||
onMessage: function(messageData) {
|
||||
ok(
|
||||
'test object' === messageData.message.message,
|
||||
'Receive object message back from iFrame via sendMessage function.'
|
||||
)
|
||||
start()
|
||||
}
|
||||
})
|
||||
})
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user