~ubuntu-branches/ubuntu/raring/qtwebkit-source/raring-proposed

« back to all changes in this revision

Viewing changes to ManualTests/select-popup-tooltip-test.html

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-02-18 14:24:18 UTC
  • Revision ID: package-import@ubuntu.com-20130218142418-eon0jmjg3nj438uy
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html>
 
2
<html>
 
3
<body>
 
4
<h3> Test tool tip is correctly shown when popup select is displayed.</h3>
 
5
<ol>
 
6
<li>Click the following select tag.</li>
 
7
<li> Move mouse cursor on "option 1" and stop moving.</li>
 
8
<li> After seconds, make sure you can see tool tip text "This is the first option".</li>
 
9
<li> Move mouse cursor on "option 2" and stop moving.</li>
 
10
<li> Make sure you can see tool tip text "This is the second option".</li>
 
11
</ol>
 
12
 
 
13
<select size=1>
 
14
<option title="This is the first option">option 1</option>
 
15
<option title="This is the second option">option 2</option>
 
16
<option title="This is the third option">option 3</option>
 
17
</select>
 
18
</body>
 
19
</html>