summaryrefslogtreecommitdiffstats
path: root/dom/tests/js/clone.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/tests/js/clone.html')
-rw-r--r--dom/tests/js/clone.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/dom/tests/js/clone.html b/dom/tests/js/clone.html
new file mode 100644
index 000000000..a99f3f38d
--- /dev/null
+++ b/dom/tests/js/clone.html
@@ -0,0 +1,26 @@
+<HTML>
+<HEAD>
+<TITLE>Clone test</TITLE>
+<SCRIPT>
+function clonePara()
+{
+ var p = document.getElementsByTagName("P")[0];
+ var newp = p.cloneNode(true);
+
+ document.body.appendChild(newp);
+}
+</SCRIPT>
+</HEAD>
+<BODY>
+<H1>Clone test</H1>
+
+<P>If you press the button <B>below</B>, this paragraph and the
+image <IMG SRC="flamer.gif"> will be <FONT SIZE=+3>cloned</FONT>.
+If you see an <I>exact</I> copy of this paragraph, the test
+succeeded.</P>
+
+<FORM>
+<INPUT TYPE="button" NAME="clone" VALUE="Clone" onClick="clonePara();">
+</FORM>
+</BODY>
+</HTML> \ No newline at end of file