dom/tests/js/clone.html

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 <HTML>
     2 <HEAD>
     3 <TITLE>Clone test</TITLE>
     4 <SCRIPT>
     5 function clonePara()
     6 {
     7   var p = document.getElementsByTagName("P")[0];
     8   var newp = p.cloneNode(true);
    10   document.body.appendChild(newp);
    11 }
    12 </SCRIPT>
    13 </HEAD>
    14 <BODY>
    15 <H1>Clone test</H1>
    17 <P>If you press the button <B>below</B>, this paragraph and the
    18 image <IMG SRC="flamer.gif"> will be <FONT SIZE=+3>cloned</FONT>.
    19 If you see an <I>exact</I> copy of this paragraph, the test
    20 succeeded.</P>
    22 <FORM>
    23 <INPUT TYPE="button" NAME="clone" VALUE="Clone" onClick="clonePara();">
    24 </FORM>
    25 </BODY>
    26 </HTML>

mercurial