diff iframe-resizer/test/setHeightCalculationMethod.html @ 11:092570578470 draft

Uploaded
author saskia-hiltemann
date Mon, 16 Nov 2015 10:23:34 -0500
parents 3c160414da2e
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/iframe-resizer/test/setHeightCalculationMethod.html	Mon Nov 16 10:23:34 2015 -0500
@@ -0,0 +1,51 @@
+<!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/iframeResizer.min.js"></script>
+  <script>
+  
+    'use strict';
+    var msgId = '[iFrameSizerTest]:';
+
+		asyncTest( "setHeightCalculationMethod", function() {
+
+      var callbackCounter = 0;
+
+      iFrameResize({
+        log:true,
+        interval:0,
+        enablePublicMethods:true,
+        resizedCallback:function(messageData){
+
+          switch  (''+(++callbackCounter)){
+            case '1':
+              sendMessage('setHeightCalculationMethod');  
+              break;
+            default:
+              ok( true, 'iFrame detected content change');
+              start();
+          }
+
+        }
+      });
+    });
+    
+  </script>
+</body>
+</html>
\ No newline at end of file