Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / html / details-remove-child-2.html
blob109d297f8f941e33f306a9533b3ba4b9e829f77e
1 <script>
2 var createNewElement = function (tag, id, text) {
3 var result = document.createElement(tag);
4 result.setAttribute('id',id);
5 result.innerHTML = text;
6 return result;
7 };
9 var runTests = function () {
10 document.getElementById("detail").removeChild(document.getElementById("toremove"));
12 </script>
14 <body onload="runTests()">
15 <details id="detail" open>
16 <b id="toremove">this should be removed</b>
17 <summary id="summary">summary </summary>
18 should have no bold test.
19 </details>
20 </body>