Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.wst.jsdt.web.ui.tests/testFiles/test17-fmt.html')
-rw-r--r--tests/org.eclipse.wst.jsdt.web.ui.tests/testFiles/test17-fmt.html31
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/org.eclipse.wst.jsdt.web.ui.tests/testFiles/test17-fmt.html b/tests/org.eclipse.wst.jsdt.web.ui.tests/testFiles/test17-fmt.html
deleted file mode 100644
index 9d9dc72ec..000000000
--- a/tests/org.eclipse.wst.jsdt.web.ui.tests/testFiles/test17-fmt.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
-"http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Insert title here</title>
-</head>
-<body>
- <input onchange="change();">
- <button onclick="dochange();">click</button>
- <div></div>
- <script type="text/javascript">
- function dochange() {
- var input = document.getElementsByTagName("input")[0];
- var div = document.getElementsByTagName("div")[0];
-
- var str = "";
- input.setAttribute("value", "bbb");
- for ( var i in window) {
- str += i + "=" + window[i] + "<BR>";
- }
- div.innerHTML = str;
- }
-
- function change() {
- alert(this);
- }
- </script>
-
-</body>
-</html> \ No newline at end of file

Back to the top