mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-15 15:55:56 +01:00
2173c94bf0
- Added a local JavaScript file to show an alert dialog - Added more comments to the demo.
23 lines
615 B
HTML
23 lines
615 B
HTML
<!DOCTYPE html>
|
|
<html><head><script type="text/javascript" src="/test.js" charset="utf-8"></script></head>
|
|
<body>
|
|
|
|
<p>
|
|
<img src='emoji.png'><br>Local image</p>
|
|
|
|
<p>
|
|
<img src='dontexist.png'><br>Non existing local image</p>
|
|
|
|
|
|
<p><img src='http://www.briskbard.com/images/logo2.png'><br>Remote image</p>
|
|
|
|
<p><object width="150" height="150" data="helloworld.swf"></object><br>
|
|
Local SWF file.<br>
|
|
You need to install the Adobe Flash PPAPI plugin to view the SWF file.</p>
|
|
|
|
|
|
<p><button onclick="myAlertFunction()">Click me</button>
|
|
</p>
|
|
|
|
<p><img src='jupiter.png'><br>Bigger image</p>
|
|
|
|
</body>
|
|
</html>
|