Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / html / details-add-summary-2.html
blobb8ab7da84fa919ef54de2d62677f96ebc7388788
1 <script>
3 var createNewElement = function (tag, id, text) {
4 var result = document.createElement(tag);
5 result.setAttribute('id',id);
6 result.innerHTML = text;
7 return result;
8 };
10 var runTests = function () {
11 document.getElementById("dt1").appendChild(createNewElement("summary", "new1", "new 1"));
12 document.getElementById("dt1").appendChild(createNewElement("summary", "new2", "new 2"));
15 </script>
17 <body onload="runTests()">
18 <details id="dt1"></details>
19 </body>