Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / html / details-add-summary-5.html
blobf7f587549437fd3e9542566124a7d987268a663d
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").insertBefore(createNewElement("summary", "new1", "new 1"), document.getElementById("summary1"));
14 </script>
16 <body onload="runTests()">
17 <details id="dt1">
18 <summary id="summary1">summary</summary>
19 </details>
20 </body>