summaryrefslogtreecommitdiffstats
path: root/WebCore/manual-tests/qt/qtplugin.html
blob: b2dbf3c708f8237171fbd8ee8edb11372de72623 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<body>
Image:<br/>
 <img src="http://labs.trolltech.com/skins/trolltech_labs/categories/internet.png" width="80" height="80"/>
 <br/>
QT progress bar:
<br/>
<object type="application/x-qt-plugin" classid="QProgressBar" name="progressbar" height=30></object>
<script>
function display(){
 if (++document.progressbar.value != 100)
setTimeout("display()", 50)
}
display();
</script>
</body>
</html>