CEF4Delphi/bin/test.html
Salvador Diaz Fau 1299a6f596 Added ConsoleBrowser2 and WebpageSnapshot demos
- Split the Lazarus demos directory into "Lazarus_Windows" and "Lazarus_Linux".
- Added OSRExternalPumpBrowser and TinyBrowser2 demos to "Lazarus_Linux".
- Set TBufferPanel.GetScreenScale as virtual.
- Added DevTools to the SchemeRegistrationBrowser demo.
- Modified the SchemeRegistrationBrowser demo to receive XMLHttpRequest requests from JavaScript.
2020-12-13 18:36:10 +01:00

22 lines
682 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()">Show Alert box</button></p>
<p><button onclick="sendCustomReq()">Send request</button></p>
<p><img src='jupiter.png'><br>Bigger image</p>
</body>
</html>