3 <p>All four boxes below should be green
</p>
4 <template><div style=
"background-image: url(resources/greenbox.png); width: 100px; height: 100px; border: 1px solid black"></div><br></template>
6 var template
= document
.querySelector('template');
7 document
.body
.appendChild(template
.content
.cloneNode(true));
8 document
.body
.appendChild(document
.importNode(template
.content
, true));
10 // Give templateDiv its own ElementData
11 var templateDiv
= template
.content
.firstChild
;
12 templateDiv
.style
.width
= '99px';
13 templateDiv
.style
.width
= '100px';
15 document
.body
.appendChild(template
.content
.cloneNode(true));
16 document
.body
.appendChild(document
.importNode(template
.content
, true));