Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Side by Side Diff: ManualTests/qt/qtplugin.html

Issue 18045005: Remove qt and gtk manual tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <body>
3 Image:<br/>
4 <img src="qrc:/webkit/inspector/Images/largerResourcesButtonGlyph.png" width="8 0" 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>
OLDNEW
« no previous file with comments | « ManualTests/qt/plugin-sibling-frame-include.html ('k') | ManualTests/qt/qtplugin-scrolling.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698