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

Unified Diff: PerformanceTests/ShadowDOM/ShadowReprojection.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/ShadowReprojection.html
diff --git a/PerformanceTests/ShadowDOM/ShadowReprojection.html b/PerformanceTests/ShadowDOM/ShadowReprojection.html
index 19b5a0b171786938f9b09ce86aa791369868cbcc..798d805aee9a834712c18e6549d7a07d1f7aec36 100644
--- a/PerformanceTests/ShadowDOM/ShadowReprojection.html
+++ b/PerformanceTests/ShadowDOM/ShadowReprojection.html
@@ -25,11 +25,11 @@ function setup()
host.appendChild(div);
}
- var shadowRoot = host.webkitCreateShadowRoot();
+ var shadowRoot = host.createShadowRoot();
shadowRoot.innerHTML = '<div id="host2"><shadow><content></content></shadow></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/MultipleInsertionPoints.html ('k') | PerformanceTests/ShadowDOM/SmallDistributionWithLayout.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698