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

Unified Diff: LayoutTests/inspector/elements/styles/shadow-dom-rules.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/inspector/elements/styles/shadow-dom-rules.html
diff --git a/LayoutTests/inspector/elements/styles/shadow-dom-rules.html b/LayoutTests/inspector/elements/styles/shadow-dom-rules.html
index 308e4deb1fd0735998d2d40a5b3aa09103cea4d7..c1324c89786545a86e3bd13f5f47e2d083072396 100644
--- a/LayoutTests/inspector/elements/styles/shadow-dom-rules.html
+++ b/LayoutTests/inspector/elements/styles/shadow-dom-rules.html
@@ -7,7 +7,7 @@
function createShadowRoot()
{
var template = document.querySelector('#tmpl');
- var root = document.querySelector('#host').webkitCreateShadowRoot();
+ var root = document.querySelector('#host').createShadowRoot();
root.appendChild(template.content.cloneNode(true));
}

Powered by Google App Engine
This is Rietveld 408576698