| Server IP : 127.0.0.1 / Your IP : 216.73.216.109 Web Server : Apache/2.4.54 (Win64) OpenSSL/1.1.1q PHP/8.1.10 System : Windows NT DESKTOP-E5T4RUN 10.0 build 19045 (Windows 10) AMD64 User : SERVERWEB ( 0) PHP Version : 8.1.10 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Users/SERVERWEB/AppData/Local/Microsoft/OneDrive/26.074.0420.0001/ |
Upload File : |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Main Content</title>
<meta name="description" content="Main Content">
<meta name="author" content="Alex Vallejo">
</head>
<body>
<h3 id="title_text">Test Page</h3>
<button id="copy_button" onclick="copy()">Copy to clipboard</button>
<br/> <br/>
<button id="finished_loading_button" onclick="finished_loading()">Finished Loading</button>
<br/> <br/>
<button id="resize_button" onclick="resize()">Resize</button>
<br/> <br/>
<button id="log_button" onclick="log()">Log</button>
<script>
// Call the finished loading function after a short delay
setTimeout(function() { finished_loading(); }, 100 /*miliseconds*/);
function copy()
{
window.external.CopyToClipboard("Some copied text");
}
function resize()
{
window.external.Resize(600,600);
}
function log()
{
window.external.Log("Some logged text");
}
function finished_loading()
{
window.external.PageFinishedLoading();
}
</script>
</body>
</html>