diff options
author | Krinkle <krinklemail@gmail.com> | 2011-07-12 17:12:07 -0400 |
---|---|---|
committer | timmywil <timmywillisn@gmail.com> | 2011-07-12 17:12:07 -0400 |
commit | 28b470d7d38c5c3d7d478f9c3f3b743bdae57b1b (patch) | |
tree | e4601c0bf5e6b89ead19dea21e76a0ef483a0d4f /test/data/support | |
parent | 1886d7443453feab0b73f4a7c4b15fbd9401c4af (diff) | |
download | jquery-28b470d7d38c5c3d7d478f9c3f3b743bdae57b1b.tar.gz jquery-28b470d7d38c5c3d7d478f9c3f3b743bdae57b1b.zip |
Landing pull request 433. Fix testswarm test cases. Fixes #9555.
More Details:
- https://github.com/jquery/jquery/pull/433
- http://bugs.jquery.com/ticket/9555
Diffstat (limited to 'test/data/support')
-rw-r--r-- | test/data/support/bodyBackground.html | 2 | ||||
-rw-r--r-- | test/data/support/boxModelIE.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/data/support/bodyBackground.html b/test/data/support/bodyBackground.html index 9963c3913..4fd9df7f6 100644 --- a/test/data/support/bodyBackground.html +++ b/test/data/support/bodyBackground.html @@ -31,7 +31,7 @@ <script src="../../../src/dimensions.js"></script> </div> <script> - window.top.supportCallback( jQuery( "body" ).css( "backgroundColor" ), jQuery.support ); + window.parent.supportCallback( jQuery( "body" ).css( "backgroundColor" ), jQuery.support ); </script> </body> </html> diff --git a/test/data/support/boxModelIE.html b/test/data/support/boxModelIE.html index 1b11d2a59..e3c907d34 100644 --- a/test/data/support/boxModelIE.html +++ b/test/data/support/boxModelIE.html @@ -21,7 +21,7 @@ <script src="../../../src/offset.js"></script> <script src="../../../src/dimensions.js"></script> <script> - window.top.supportCallback( document.compatMode, jQuery.support.boxModel ); + window.parent.supportCallback( document.compatMode, jQuery.support.boxModel ); </script> </body> </html> |