mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-07-17 02:05:58 +02:00
17 lines
406 B
HTML
17 lines
406 B
HTML
<html>
|
|
<head>
|
|
<title>Browser console output emulation demo</title>
|
|
<meta charset="utf-8"/>
|
|
<script type="application/javascript" src="demobrowserconsole.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="pasjsconsole" style="width: 640px; height: 480px;">
|
|
</div>
|
|
<script type="application/javascript">
|
|
rtl.showUncaughtExceptions=true;
|
|
rtl.run();
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|