3 var createNewElement = function (tag
, id
, text
) {
4 var result
= document
.createElement(tag
);
5 result
.setAttribute('id',id
);
6 result
.innerHTML
= text
;
10 var runTests = function () {
11 document
.getElementById("dt1").appendChild(createNewElement("summary", "new1", "new 1"));
12 document
.getElementById("dt1").appendChild(createNewElement("summary", "new2", "new 2"));
17 <body onload=
"runTests()">
18 <details id=
"dt1"></details>