Mercurial > repos > saskia-hiltemann > ireport
comparison iframe-resizer/test/close.html @ 0:ac5f9272033b draft
first upload
author | saskia-hiltemann |
---|---|
date | Tue, 01 Jul 2014 11:42:23 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:ac5f9272033b |
---|---|
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <meta charset="utf-8"> | |
5 <title>QUnit LoadHide</title> | |
6 <link rel="stylesheet" href="resources/qunit.css"> | |
7 </head> | |
8 <body> | |
9 <div id="qunit"></div> | |
10 <div id="qunit-fixture"> | |
11 | |
12 <div style="width:400px;"> | |
13 <iframe src="resources/frame.content.html" width="100%" scrolling="no"></iframe> | |
14 </div> | |
15 | |
16 </div> | |
17 <script src="resources/qunit.js"></script> | |
18 <script src="resources/jquery.js"></script> | |
19 <script src="resources/testLib.js"></script> | |
20 <script src="../js/iframeResizer.min.js"></script> | |
21 <script> | |
22 | |
23 'use strict'; | |
24 | |
25 asyncTest( "iFrame close Event", function() { | |
26 | |
27 var callbackCounter = 0; | |
28 | |
29 $('iframe').iFrameResize({ | |
30 log:true, | |
31 doWidth:true, | |
32 enablePublicMethods:true, | |
33 resizedCallback:function(messageData){ | |
34 if (0===callbackCounter++) | |
35 sendMessage('close'); | |
36 }, | |
37 closedCallback:function(){ | |
38 ok( 0 === $('iframe').length , 'IFrame removed from page'); | |
39 start(); | |
40 } | |
41 }); | |
42 }); | |
43 | |
44 | |
45 </script> | |
46 </body> | |
47 </html> |