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

Unified Diff: PerformanceTests/ShadowDOM/ContentReprojection.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/ShadowDOM/ContentReprojection.html
diff --git a/PerformanceTests/ShadowDOM/ContentReprojection.html b/PerformanceTests/ShadowDOM/ContentReprojection.html
index 28cfee494b43fcd070004c9f1aadd059b06879ec..9ecef557e61a6dcf58d7cabcd17ae567b71407f3 100644
--- a/PerformanceTests/ShadowDOM/ContentReprojection.html
+++ b/PerformanceTests/ShadowDOM/ContentReprojection.html
@@ -25,11 +25,11 @@ function setup()
host.appendChild(div);
}
- var shadowRoot = host.webkitCreateShadowRoot();
+ var shadowRoot = host.createShadowRoot();
shadowRoot.innerHTML = '<div id="host2"><content></content></div>';
var host2 = shadowRoot.getElementById('host2');
- var shadowRoot2 = host2.webkitCreateShadowRoot();
+ var shadowRoot2 = host2.createShadowRoot();
shadowRoot2.innerHTML = '<content select=".selected"></content>';
}
« no previous file with comments | « PerformanceTests/ShadowDOM/ChangingSelect.html ('k') | PerformanceTests/ShadowDOM/DistributionWithMultipleShadowRoots.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698