diff options
Diffstat (limited to 'test/data/support')
-rw-r--r-- | test/data/support/bodyBackground.html | 2 | ||||
-rw-r--r-- | test/data/support/boxModelIE.html | 2 | ||||
-rw-r--r-- | test/data/support/hiddenIFrameFF.html | 7 | ||||
-rw-r--r-- | test/data/support/testElementCrash.html | 7 |
4 files changed, 4 insertions, 14 deletions
diff --git a/test/data/support/bodyBackground.html b/test/data/support/bodyBackground.html index 0f12e75f9..4f0105a1d 100644 --- a/test/data/support/bodyBackground.html +++ b/test/data/support/bodyBackground.html @@ -21,7 +21,7 @@ </div> <script> jQuery(function() { - window.parent.supportCallback( jQuery( "body" ).css( "backgroundColor" ), jQuery.support ); + window.parent.iframeCallback( jQuery( "body" ).css( "backgroundColor" ), jQuery.support ); }); </script> </body> diff --git a/test/data/support/boxModelIE.html b/test/data/support/boxModelIE.html index ca647a281..24e4c6100 100644 --- a/test/data/support/boxModelIE.html +++ b/test/data/support/boxModelIE.html @@ -3,7 +3,7 @@ <body> <script src="../include_js.php"></script> <script> - jQuery(function() { window.parent.supportCallback( document.compatMode, jQuery.support.boxModel ) }); + jQuery(function() { window.parent.iframeCallback( document.compatMode, jQuery.support.boxModel ) }); </script> </body> </html> diff --git a/test/data/support/hiddenIFrameFF.html b/test/data/support/hiddenIFrameFF.html deleted file mode 100644 index c2dda8cd4..000000000 --- a/test/data/support/hiddenIFrameFF.html +++ /dev/null @@ -1,7 +0,0 @@ -<html> - <head> - <script src="../include_js.php"></script> - </head> - <body> - </body> -</html> diff --git a/test/data/support/testElementCrash.html b/test/data/support/testElementCrash.html index 583ca7b0f..6ef9651da 100644 --- a/test/data/support/testElementCrash.html +++ b/test/data/support/testElementCrash.html @@ -7,14 +7,11 @@ background: url('http://s1.postimage.org/2d2r8xih0/body_background.png'); } </style> - <script src="../../../src/core.js"></script> - <script src="../../../src/callbacks.js"></script> - <script src="../../../src/deferred.js"></script> - <script src="../../../src/support.js"></script> + <script src="../include_js.php"></script> </head> <body> <script> - window.parent.supportCallback(); + window.parent.iframeCallback(); </script> </body> </html> |