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

Unified Diff: PerformanceTests/Events/EventsDispatchingInShadowTrees.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: PerformanceTests/Events/EventsDispatchingInShadowTrees.html
diff --git a/PerformanceTests/Events/EventsDispatchingInShadowTrees.html b/PerformanceTests/Events/EventsDispatchingInShadowTrees.html
index 01eaeb68617b49a3b76837298fc4210ca184ae96..3b42efaedf24870bbd468fb347c0feb58e832ed5 100644
--- a/PerformanceTests/Events/EventsDispatchingInShadowTrees.html
+++ b/PerformanceTests/Events/EventsDispatchingInShadowTrees.html
@@ -20,7 +20,7 @@ function createTreeOfTrees(root, depth, branch, eachTreeHeight)
for (i = 0; i < branch; ++i) {
var child = document.createElement('div');
node.appendChild(child);
- var shadowRoot = child.webkitCreateShadowRoot();
+ var shadowRoot = child.createShadowRoot();
createTreeOfTrees(shadowRoot, depth - 1, branch, eachTreeHeight);
}
}

Powered by Google App Engine
This is Rietveld 408576698