| Index: third_party/WebKit/LayoutTests/fast/dom/shadow/v1-slots-fallback-api-2.html
 | 
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/v1-slots-fallback-api-2.html b/third_party/WebKit/LayoutTests/fast/dom/shadow/v1-slots-fallback-api-2.html
 | 
| deleted file mode 100644
 | 
| index 7d5a3f1991c31cd70708af05653ad390f98fd46d..0000000000000000000000000000000000000000
 | 
| --- a/third_party/WebKit/LayoutTests/fast/dom/shadow/v1-slots-fallback-api-2.html
 | 
| +++ /dev/null
 | 
| @@ -1,55 +0,0 @@
 | 
| -<!DOCTYPE html>
 | 
| -<script src='../../../resources/testharness.js'></script>
 | 
| -<script src='../../../resources/testharnessreport.js'></script>
 | 
| -<script src='resources/shadow-dom.js'></script>
 | 
| -<div id='host'>
 | 
| -  <template data-mode='open'>
 | 
| -    <slot name='slot1'>
 | 
| -      <div id='fallback1'></div>
 | 
| -      <slot name='slot2'>
 | 
| -        <div id='fallback2'></div>
 | 
| -      </slot>
 | 
| -    </slot>
 | 
| -    <slot name='slot3'>
 | 
| -      <slot name='slot4'>
 | 
| -        <div id='fallback3'></div>
 | 
| -      </slot>
 | 
| -    </slot>
 | 
| -  </template>
 | 
| -  <div id='child1' slot='slot2'></div>
 | 
| -</div>
 | 
| -<script>
 | 
| -'use strict';
 | 
| -convertTemplatesToShadowRootsWithin(host);
 | 
| -removeWhiteSpaceOnlyTextNodes(host);
 | 
| -document.body.offsetLeft;
 | 
| -
 | 
| -const slot1 = host.shadowRoot.querySelector('[name=slot1]');
 | 
| -const slot2 = host.shadowRoot.querySelector('[name=slot2]');
 | 
| -const slot3 = host.shadowRoot.querySelector('[name=slot3]');
 | 
| -const slot4 = host.shadowRoot.querySelector('[name=slot4]');
 | 
| -const fallback1 = host.shadowRoot.querySelector('#fallback1');
 | 
| -const fallback2 = host.shadowRoot.querySelector('#fallback2');
 | 
| -const fallback3 = host.shadowRoot.querySelector('#fallback3');
 | 
| -
 | 
| -test(() => {
 | 
| -  assert_equals(child1.assignedSlot, slot2);
 | 
| -  assert_equals(fallback1.assignedSlot, null);
 | 
| -  assert_equals(fallback2.assignedSlot, null);
 | 
| -  assert_equals(fallback3.assignedSlot, null);
 | 
| -}, "assignedSlot");
 | 
| -
 | 
| -test(() => {
 | 
| -  assert_array_equals(slot1.getAssignedNodes(), []);
 | 
| -  assert_array_equals(slot2.getAssignedNodes(), [child1]);
 | 
| -  assert_array_equals(slot3.getAssignedNodes(), []);
 | 
| -  assert_array_equals(slot4.getAssignedNodes(), []);
 | 
| -}, "getAssignedNodes");
 | 
| -
 | 
| -test(() => {
 | 
| -  assert_array_equals(slot1.getAssignedNodes({flatten: true}), [fallback1, child1]);
 | 
| -  assert_array_equals(slot2.getAssignedNodes({flatten: true}), [child1]);
 | 
| -  assert_array_equals(slot3.getAssignedNodes({flatten: true}), [fallback3]);
 | 
| -  assert_array_equals(slot4.getAssignedNodes({flatten: true}), [fallback3]);
 | 
| -}, "getDistributedNodes");
 | 
| -</script>
 | 
| 
 |