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

Unified Diff: LayoutTests/fast/dom/shadow/insertion-parent-skips-ua-shadow.html

Issue 15757013: Remove an experimental webkitInsertionParent API. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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: LayoutTests/fast/dom/shadow/insertion-parent-skips-ua-shadow.html
diff --git a/LayoutTests/fast/dom/shadow/insertion-parent-skips-ua-shadow.html b/LayoutTests/fast/dom/shadow/insertion-parent-skips-ua-shadow.html
deleted file mode 100644
index 1551940719cd3fda36ce5d4da115dbd3077bfbab..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/shadow/insertion-parent-skips-ua-shadow.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<script src="../../js/resources/js-test-pre.js"></script>
-
-<details id="d"><div id="e"></div></details>
-
-<script>
-description('Tests that webkitInsertionParent does not leak nodes in user agent shadow DOM');
-
-jsTestIsAsync = true;
-
-function test() {
- // Look through UA shadow root => no insertion point
- e = document.querySelector('#e');
- shouldBeNull('e.webkitInsertionParent');
-
- e.parentNode.remove();
-
- finishJSTest();
-}
-window.onload = test;
-
-successfullyParsed = true;
-</script>
-<script src="../../js/resources/js-test-post.js"></script>

Powered by Google App Engine
This is Rietveld 408576698