boxSizing.html 277 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <style>
  6. body {
  7. zoom: 0.87;
  8. }
  9. </style>
  10. </head>
  11. <body>
  12. <script src="../../jquery.js"></script>
  13. <script>
  14. jQuery(function() {
  15. window.parent.iframeCallback( jQuery.support.boxSizing );
  16. });
  17. </script>
  18. </body>
  19. </html>