mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 00:47:47 +02:00
21 lines
691 B
HTML
21 lines
691 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>RTL testsuite</title>
|
|
<script SRC="testrtl.js" type="application/javascript"></script>
|
|
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
|
|
<!-- <link href="fpcunit.css" rel="stylesheet"> -->
|
|
</head>
|
|
<body>
|
|
<button class="btn btn-default" id="RunTest">Run test</button>
|
|
<div id="fpcunit-controller"></div>
|
|
<div id="fpcunit"></div>
|
|
<div id="pasjsconsole"></div>
|
|
<script>
|
|
rtl.run();
|
|
</script>
|
|
</body>
|
|
</html>
|