Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(474)

Unified Diff: third_party/WebKit/LayoutTests/shadow-dom/event-deeppath-closed-shadowroot2.html

Issue 2051743002: Rename deep-path to composed-path in LayoutTests/shadow-dom/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean-tests-2
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/shadow-dom/event-deeppath-closed-shadowroot2.html
diff --git a/third_party/WebKit/LayoutTests/shadow-dom/event-deeppath-closed-shadowroot2.html b/third_party/WebKit/LayoutTests/shadow-dom/event-deeppath-closed-shadowroot2.html
deleted file mode 100644
index f3f9b3e0b336f79792f5714362fdeff54e6ca0ad..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/shadow-dom/event-deeppath-closed-shadowroot2.html
+++ /dev/null
@@ -1,54 +0,0 @@
-<!doctype html>
-<script src="../resources/js-test.js"></script>
-<script src="../fast/dom/shadow/resources/shadow-dom.js"></script>
-<body></body>
-<script>
-function prepareTree() {
- // Note: #target will be distributed to furthest <content>.
- document.body.appendChild(
- createDOM('div', {id: 'host_closed'},
- attachShadow({mode: 'closed'},
- createDOM('div', {id: 'div1_open'},
- createDOM('content', {id: 'c1'}),
- attachShadow({mode: 'open'},
- createDOM('content', {id: 'c2'})))),
- createDOM('div', {id: 'host_open'},
- attachShadow({mode: 'open'},
- createDOM('div', {id: 'div2_closed'},
- attachShadow({mode: 'closed'},
- createDOM('div', {id: 'div3_open'},
- attachShadow({mode: 'open'},
- createDOM('div', {id: 'target'})))))))));
-}
-
-debug('Event.composedPath() should include only unclosed nodes.');
-
-prepareTree();
-
-var target = getNodeInComposedTree('host_open/div2_closed/div3_open/target');
-
-debug('The full event path should be (length=12):\n' +
- 'div#target, #shadow-root (open), div#div3_open, #shadow-root (closed),\n' +
- 'div#div2_closed, #shadow-root (open), div#host_open, div#host_closed,\n' +
- 'body, html, #document, window\n');
-
-debug('On #host_closed, #host_open, and #div2_closed,\n' +
- 'div#target, #shadow-root (open), div#div3_open, #shadow-root (closed)\n' +
- 'will be trimmed (length=8).\n');
-
-['host_closed', 'host_open', 'host_open/div2_closed', 'host_open/div2_closed/div3_open', 'host_open/div2_closed/div3_open/target'].forEach(function(nodePath) {
- var node = getNodeInComposedTree(nodePath);
-
- var eventPath;
- var clickHandler = function(e) { eventPath = e.composedPath(); };
- node.addEventListener('click', clickHandler, false);
-
- debug('\nDispaching a click event on #target, listening on #' + node.id + '.');
- eventPath = null;
- target.click();
- debug('Got event.composedPath() for #' + node.id + ':');
- debug(dumpNodeList(eventPath));
-
- node.removeEventListener('click', clickHandler, false);
-});
-</script>

Powered by Google App Engine
This is Rietveld 408576698