WebCore/manual-tests/qt/qtplugin.html
changeset 0 4f2f89ce4247
equal deleted inserted replaced
-1:000000000000 0:4f2f89ce4247
       
     1 <html>
       
     2 <body>
       
     3 Image:<br/>
       
     4  <img src="qrc:/webkit/inspector/Images/largerResourcesButtonGlyph.png" width="80" height="80"/>
       
     5  <br/>
       
     6 
       
     7 <!-- visible progressbar -->
       
     8 <div>
       
     9 QT progress bar:
       
    10 <object type="application/x-qt-plugin" classid="QProgressBar" name="progressbar1" height=30></object>
       
    11 </div>
       
    12 
       
    13 <!-- should not be visible -->
       
    14 <div style="visibility: hidden;">
       
    15 You should not see this:
       
    16 <object type="application/x-qt-plugin" classid="QProgressBar" name="progressbar2" height=30></object>
       
    17 </div>
       
    18 
       
    19 <script>
       
    20 function display(){
       
    21  if (++document.progressbar1.value != 100)
       
    22 setTimeout("display()", 50)
       
    23 }
       
    24 display();
       
    25 </script>
       
    26 </body>
       
    27 </html>