Index: LayoutTests/fast/dom/shadow/event-path-multiple-shadow-roots.html |
diff --git a/LayoutTests/fast/dom/shadow/event-path-multiple-shadow-roots.html b/LayoutTests/fast/dom/shadow/event-path-multiple-shadow-roots.html |
index 2b62a24f9eddb0b4f1437a6c940a862070d45292..6a6a83890ebedb5cf5625c36b71076ec0adcfd2f 100644 |
--- a/LayoutTests/fast/dom/shadow/event-path-multiple-shadow-roots.html |
+++ b/LayoutTests/fast/dom/shadow/event-path-multiple-shadow-roots.html |
@@ -20,10 +20,9 @@ sandbox.appendChild( |
createDOM('content', {'id': 'F'}))), |
createShadowRoot({'id': 'G'}, |
createDOM('div', {'id': 'H'}, |
- createDOM('shadow', {'id': 'I'}, |
- createDOM('content', {'id': 'J'})))))); |
+ createDOM('shadow', {'id': 'I'}))))); |
-['A', 'B', 'C', 'A/', 'A/E', 'A/F', 'A//', 'A//H', 'A//I', 'A//J'].forEach(function(path) { |
+['A', 'B', 'C', 'A/', 'A/E', 'A/F', 'A//', 'A//H', 'A//I'].forEach(function(path) { |
getNodeInTreeOfTrees(path).addEventListener('click', function(event) { |
debug('\nevent.path on node ' + dumpNode(event.currentTarget)); |
debug(dumpNodeList(event.path)); |