Skip to main content

Bug Tracker

Side navigation

Ticket #4194: index.html


File index.html, 0.6 KB (added by jeremy.cloud, February 19, 2009 04:23PM UTC)

Test Case

<html>
    <head>
        <style>
            #block { display: inline-block; width: 100px; height: 100px; background-color: #00ff00; }
        </style>
        <script src="jquery-1.3.1.min.js"></script> <!-- doesn't work -->
        <!--script src="jquery-1.2.6.min.js"></script--> <!-- works -->
        <script>
            $(function() {
                $('#block').hide() // if you don't hide first, it works
                $('#block').show()
            })
        </script>
    </head>
    <body>
        <span id="block" style="display: none">I should be 100x100.  if not, this test failed.</span>
    </body>
</html>

Download in other formats:

Original Format