| Index: third_party/WebKit/LayoutTests/fast/html/details-add-child-2.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/html/details-add-child-2.html b/third_party/WebKit/LayoutTests/fast/html/details-add-child-2.html
|
| deleted file mode 100644
|
| index 8bbbe227b3f532f5fb4ea16e2638fe7ce6ccc00d..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/html/details-add-child-2.html
|
| +++ /dev/null
|
| @@ -1,19 +0,0 @@
|
| -<script>
|
| -var createNewElement = function (tag, id, text) {
|
| - var result = document.createElement(tag);
|
| - result.setAttribute('id',id);
|
| - result.innerHTML = text;
|
| - return result;
|
| -};
|
| -
|
| -var runTests = function () {details
|
| - var details = document.getElementById("detail");
|
| - details.insertBefore(createNewElement("b", "toadd", "should have bold test"), details.firstChild);
|
| -};
|
| -</script>
|
| -
|
| -<body onload="runTests()">
|
| - <details id="detail" open>
|
| - <summary id="summary">summary </summary>
|
| - </details>
|
| -</body>
|
|
|