forked from cefsharp/CefSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTooltipTest.html
More file actions
26 lines (26 loc) · 854 Bytes
/
TooltipTest.html
File metadata and controls
26 lines (26 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Tooltip Test</title>
</head>
<body style="width:500px;">
<form>
<input type="text" size=25 title="This is the first tooltip">
<br />
<input type="text" size=25 title="This is the second tooltip">
<br />
<div>
<select style="float: left;">
<option selected>test</option>
<option>one</option>
<option>two</option>
</select>
<select style="float: right;">
<option selected>testRight</option>
<option>three</option>
<option>four</option>
</select>
</div>
</form>
</body>
</html>