Mercurial > repos > saskia-hiltemann > ireport
diff iframe-resizer/test/scrolling.html @ 0:ac5f9272033b draft
first upload
author | saskia-hiltemann |
---|---|
date | Tue, 01 Jul 2014 11:42:23 -0400 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/iframe-resizer/test/scrolling.html Tue Jul 01 11:42:23 2014 -0400 @@ -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="../js/iframeResizer.min.js"></script> + <script> + + 'use strict'; + var msgId = '[iFrameSizerTest]:'; + + asyncTest( "scrolling not set", function() { + $('iframe').iFrameResize({ + log:true, + resizedCallback:function(messageData){ + ok( true, 'Receive message back from iFrame.' ); + ok( 'hidden' === messageData.iframe.style.overflow, 'iFrame overflow = ' + messageData.iframe.style.overflow + '. Expected \'hidden\'.' ); + ok( 'no' === messageData.iframe.scrolling, 'iFrame scrolling = ' + messageData.iframe.scrolling + '. Expected \'no\'.' ); + start(); + } + }); + }); + + asyncTest( "scrolling = false", function() { + $('iframe').iFrameResize({ + log:true, + scrolling:false, + resizedCallback:function(messageData){ + ok( true, 'Receive message back from iFrame.' ); + ok( 'hidden' === messageData.iframe.style.overflow, 'iFrame overflow = ' + messageData.iframe.style.overflow + '. Expected \'hidden\'.' ); + ok( 'no' === messageData.iframe.scrolling, 'iFrame scrolling = ' + messageData.iframe.scrolling + '. Expected \'no\'.' ); + start(); + } + }); + }); + + asyncTest( "scrolling = true", function() { + $('iframe').iFrameResize({ + log:true, + scrolling:true, + resizedCallback:function(messageData){ + ok( true, 'Receive message back from iFrame.' ); + ok( 'auto' === messageData.iframe.style.overflow, 'iFrame overflow = ' + messageData.iframe.style.overflow + '. Expected \'auto\'.' ); + ok( 'yes' === messageData.iframe.scrolling, 'iFrame scrolling = ' + messageData.iframe.scrolling + '. Expected \'yes\'.' ); + start(); + } + }); + }); + + </script> +</body> +</html> \ No newline at end of file