diff options
author | Araq <rumpf_a@web.de> | 2013-02-15 12:37:09 -0800 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-02-15 12:37:09 -0800 |
commit | fb6747a55e5aaed98375845677c272cdfe341caf (patch) | |
tree | 27163aa70d6f24b1de82113b05dcf7db921e1b57 /tests/js.html | |
parent | 0f2aa053d9e9bcbe67238c498ed96f27c8d737db (diff) | |
parent | 1785c6877ba0d5329c700e82b6ccf0e7a2e684b8 (diff) | |
download | Nim-fb6747a55e5aaed98375845677c272cdfe341caf.tar.gz |
Merge pull request #333 from Tass/master
EcmaScript => Js
Diffstat (limited to 'tests/js.html')
-rwxr-xr-x | tests/js.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/js.html b/tests/js.html new file mode 100755 index 000000000..81baef784 --- /dev/null +++ b/tests/js.html @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8" ?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<!-- This has been written by hand. (c) 2010 Andreas Rumpf --> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>Nimrod JavaScript Generator Test</title> +<style type="text/css"> +span.DecNumber {color: blue} +</style> +<script src="nimcache/js.js" type="text/javascript"></script> +</head> +<body onload="OnLoad()"> +<form name="form1" action="js.html"> + <input type="text" name="input1" size="10" /> + <input type="button" value="Calculate square" onclick="OnButtonClick()" /> +</form> + +</body> +</html> |