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

Unified Diff: LayoutTests/fast/dom/shadow/reinsert-insertion-point.html

Issue 208503004: Remove prefixed Shadow DOM APIs in Element. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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/reinsert-insertion-point.html
diff --git a/LayoutTests/fast/dom/shadow/reinsert-insertion-point.html b/LayoutTests/fast/dom/shadow/reinsert-insertion-point.html
index 9d5730665bced96726aeb6be20f9f8d2d0f2ed67..aab37b880d608d6e932f4c8e84aa608e488f2294 100644
--- a/LayoutTests/fast/dom/shadow/reinsert-insertion-point.html
+++ b/LayoutTests/fast/dom/shadow/reinsert-insertion-point.html
@@ -6,7 +6,7 @@
<script>
var inside = document.getElementById('inside');
-var insideRoot = inside.webkitCreateShadowRoot();
+var insideRoot = inside.createShadowRoot();
var content = insideRoot.appendChild(document.createElement('content'));
@@ -17,4 +17,3 @@ insideRoot.appendChild(content);
shouldBeTrue("inside.offsetHeight > 0");
</script>
-

Powered by Google App Engine
This is Rietveld 408576698