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

Unified Diff: LayoutTests/fast/dom/shadow/insertion-parent-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-shadow.html
diff --git a/LayoutTests/fast/dom/shadow/insertion-parent-shadow.html b/LayoutTests/fast/dom/shadow/insertion-parent-shadow.html
deleted file mode 100644
index 98275885552d3c1c77d63ffae4f7bbeb7ae07fe9..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/shadow/insertion-parent-shadow.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../../js/resources/js-test-pre.js"></script>
-<script src="resources/shadow-dom.js"></script>
-</head>
-<body>
-<script>
-description("Tests for insertionParent with a shadow element.");
-
-document.body.appendChild(
- createDOM('div', {},
- createDOM('div', {'id': 'host'},
- createShadowRoot(
- createDOM('div', {'id': 'older-shadow-root-child'})),
- createShadowRoot(
- createDOM('shadow', {'id': 'shadow'})))));
-
-document.body.offsetLeft;
-
-shouldBeEqualToString("getNodeInShadowTreeStack('host/older-shadow-root-child').webkitInsertionParent.id", "shadow");
-shouldBeNull("getNodeInShadowTreeStack('host//shadow').webkitInsertionParent");
-</script>
-<script src="../../js/resources/js-test-post.js"></script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698