Skip to content

Commit a3b8c3e

Browse files
committed
Demo - Add some more of the example html files
- For testing
1 parent 2096d07 commit a3b8c3e

File tree

2 files changed

+53
-0
lines changed

2 files changed

+53
-0
lines changed

demo/HelloWorld.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
3+
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
4+
<head>
5+
<meta charset="utf-8" />
6+
<title>Hello World</title>
7+
</head>
8+
<body>
9+
<p>Hello World</p>
10+
<script>
11+
document.write("Testing");
12+
</script>
13+
</body>
14+
</html>

demo/TooltipTest.html

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2+
<html>
3+
<head>
4+
<title>Tooltip Test</title>
5+
</head>
6+
<body>
7+
<div style="width:500px;">
8+
<input type="text" size=25 title="This is the first tooltip">
9+
<br />
10+
<input type="text" size=25 title="This is the second tooltip">
11+
<br />
12+
<div>
13+
<select style="float: left;">
14+
<option selected>test</option>
15+
<option>one</option>
16+
<option>two</option>
17+
</select>
18+
<select style="float: right;">
19+
<option selected>testRight</option>
20+
<option>three</option>
21+
<option>four</option>
22+
</select>
23+
</div>
24+
</div>
25+
26+
<div>
27+
<div style="float:left;width:60%;">
28+
Hover on the link to see a very long tooltip.
29+
<br />
30+
Demo https://github.com/cefsharp/CefSharp/issues/2488
31+
</div>
32+
<div style="float:left;width:39%;" title="Credit check failed: Settlement risk overflow (PosFlows), group AllDeals ( LLOYDS TSB ), Counterparty VSMPOTIRUS, pillar Inf, 16/08/2018: over bound. by 70,787.Credit check failed: Settlement risk overflow (PosFlows), group AllDeals ( LLOYDS TSB ), Counterparty VSMPOTIRUS, pillar Inf, 16/08/2018: over bound. by 70,787.Credit check failed: Settlement risk overflow (PosFlows), group AllDeals ( LLOYDS TSB ), Counterparty VSMPOTIRUS, pillar Inf, 16/08/2018: over bound. by 70,787.Credit check failed: Settlement risk overflow (PosFlows), group AllDeals ( LLOYDS TSB ), Counterparty VSMPOTIRUS, pillar Inf, 16/08/2018: over bound. by 70,787.Credit check failed: Settlement risk overflow (PosFlows), group AllDeals ( LLOYDS TSB ), Counterparty VSMPOTIRUS, pillar Inf, 16/08/2018: over bound. by 70,787.1234567890">
33+
Hover HERE
34+
</div>
35+
<div style="clear:both;"></div>
36+
</div>
37+
38+
</body>
39+
</html>

0 commit comments

Comments
 (0)