Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/fast/dom/shadow/dynamically-created-shadow-root.html |
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/dynamically-created-shadow-root.html b/third_party/WebKit/LayoutTests/fast/dom/shadow/dynamically-created-shadow-root.html |
| deleted file mode 100644 |
| index 935a58f578f4f21cbb8e8c0fa29f638cc582fbfc..0000000000000000000000000000000000000000 |
| --- a/third_party/WebKit/LayoutTests/fast/dom/shadow/dynamically-created-shadow-root.html |
| +++ /dev/null |
| @@ -1,16 +0,0 @@ |
| -<!DOCTYPE html> |
| -<body> |
| -<div> |
| -This tests that dynamically created ShadowRoot should be rendered correctly. |
| -Can only run within DRT. |
| -</div> |
| -<div id="host1">Light children should not be rendered.</div> |
| -<script> |
| -if (window.internals) { |
| - var host1 = document.querySelector('#host1'); |
| - var shadowRoot = host1.createShadowRoot(); |
| - shadowRoot.appendChild(document.createTextNode('Shadow should be rendered.')); |
| -} |
| -</script> |
| -</body> |
| -</html> |
|
kochi
2017/04/26 07:12:52
Although I'm all for removing this test case, this
hayato
2017/04/26 07:19:18
Thanks. I guess this is accidental. Let me check i
|