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

Unified Diff: LayoutTests/fast/dom/shadow/stale-distribution-after-shadow-removal.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/stale-distribution-after-shadow-removal.html
diff --git a/LayoutTests/fast/dom/shadow/stale-distribution-after-shadow-removal.html b/LayoutTests/fast/dom/shadow/stale-distribution-after-shadow-removal.html
index afd612e3c6eed955e7fe460c73181384d1564edb..c4df2d4c94a4be954545352c633d92159eb81616 100644
--- a/LayoutTests/fast/dom/shadow/stale-distribution-after-shadow-removal.html
+++ b/LayoutTests/fast/dom/shadow/stale-distribution-after-shadow-removal.html
@@ -10,8 +10,8 @@
testRunner.dumpAsText();
var host = document.getElementById('host');
- var oldestShadowRoot = host.webkitCreateShadowRoot();
- var youngestShadowRoot = host.webkitCreateShadowRoot();
+ var oldestShadowRoot = host.createShadowRoot();
+ var youngestShadowRoot = host.createShadowRoot();
oldestShadowRoot.innerHTML = '';
youngestShadowRoot.innerHTML = '<shadow></shadow>';

Powered by Google App Engine
This is Rietveld 408576698