Index: third_party/WebKit/LayoutTests/shadow-dom/event-path-related-target-scoped.html |
diff --git a/third_party/WebKit/LayoutTests/shadow-dom/event-path-related-target-scoped.html b/third_party/WebKit/LayoutTests/shadow-dom/event-path-related-target-scoped.html |
index c8144b6d964605b85df4c9891a9948015e2bc7e8..f306bf6b29284f18082da5aff6a51ef6003acf90 100644 |
--- a/third_party/WebKit/LayoutTests/shadow-dom/event-path-related-target-scoped.html |
+++ b/third_party/WebKit/LayoutTests/shadow-dom/event-path-related-target-scoped.html |
@@ -15,7 +15,7 @@ test(() => { |
new FocusEvent('test', { bubbles: true, relatedTarget: nodes['input2']})); |
let expectedPath = ['input1', 'shadowRoot']; |
assert_event_path_equals(log, |
- [['input1', 'input2', expectedPath], |
- ['shadowRoot', 'input2', expectedPath]]); |
+ [['input1', 'input1', 'input2', expectedPath], |
+ ['shadowRoot', 'input1', 'input2', expectedPath]]); |
}, 'An event should stop at the common ancestor of target and relatedTarget.'); |
</script> |