summaryrefslogtreecommitdiff
path: root/test/js/index.html
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2012-11-09 18:03:02 +0000
committerVincent Sanders <vince@netsurf-browser.org>2012-11-09 18:03:02 +0000
commit2810fe764d0074c5e32a889aabdae96ffd282978 (patch)
tree403900a5b608395664428db612dcfdc8bdf407c3 /test/js/index.html
parent413248d0fc33d3615db618628e79837f22a6bb6e (diff)
downloadnetsurf-2810fe764d0074c5e32a889aabdae96ffd282978.tar.gz
netsurf-2810fe764d0074c5e32a889aabdae96ffd282978.tar.bz2
make javascript tests acessible from index and tidy them up a little
Diffstat (limited to 'test/js/index.html')
-rw-r--r--test/js/index.html29
1 files changed, 21 insertions, 8 deletions
diff --git a/test/js/index.html b/test/js/index.html
index 9df56d0c8..e94e8e8bb 100644
--- a/test/js/index.html
+++ b/test/js/index.html
@@ -1,14 +1,16 @@
<html>
<head>
-<title>Script Tests</title>
+<title>JavaScript Tests</title>
<link rel="stylesheet" type="text/css" href="tst.css">
</head>
<body>
-<h1>Script Tests</h1>
+<h1>JavaScript Tests</h1>
+<h2>Window</h2>
<ul>
-<li><a href="assorted.html">Assorted</a></li>
+<li><a href="window.lately.html">location</a></li>
</ul>
-<h2>Document write tests</h2>
+
+<h2>Document write</h2>
<ul>
<li><a href="inline-doc-write-simple.html">Simple document write</a></li>
<li><a href="noscript-inline-doc-write.html">Script within inline script document write with noscript alternative</a></li>
@@ -18,13 +20,24 @@
<li><a href="sync-script-css.html">External syncronous script (with css)</a></li>
<li><a href="inline-innerhtml.html">Inline script innerHtml test</a></li>
</ul>
-<h2>Document write tests</h2>
+
+<h2>DOM tests</h2>
+<h3>Reference method tests</h3>
<ul>
-<li><a href="doc-dom1.html">Direct reference</a></li>
-<li><a href="doc-dom2.html">getElementById reference</a></li>
+<li><a href="doc-dom1.html">firstElementChild</a></li>
+<li><a href="doc-dom2.html">getElementById</a></li>
+<li><a href="dom-getElementsByTagName.html">getElementsByTagName</a></li>
+
</ul>
-<h2>Assorted</a>
+<h3>Document element specific</h3>
<ul>
+<li><a href="dom-doc-cookie.html">Cookie dispaly (only from server)</a></li>
+<li><a href="dom-doc-location.html">location</a></li>
+</ul>
+<h2>Assorted</h2>
+<ul>
+<li><a href="assorted-log-doc-write.html">console.log and document.write</a></li>
+
<li><a href="wikipedia-lcm.html">Example from wikipedia</a></li>
</ul>
</body>