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

Unified Diff: LayoutTests/http/tests/inspector-enabled/shadow-dom-rules-restart.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/http/tests/inspector-enabled/shadow-dom-rules-restart.html
diff --git a/LayoutTests/http/tests/inspector-enabled/shadow-dom-rules-restart.html b/LayoutTests/http/tests/inspector-enabled/shadow-dom-rules-restart.html
index 58d68a095e90c78f15527e6b824dbaf1167a22c7..dc13da48681beff2e8947ca343f9fde8a35d0b73 100644
--- a/LayoutTests/http/tests/inspector-enabled/shadow-dom-rules-restart.html
+++ b/LayoutTests/http/tests/inspector-enabled/shadow-dom-rules-restart.html
@@ -20,7 +20,7 @@ function createShadowRoot()
if (window.testRunner)
testRunner.waitUntilDone();
var template = document.querySelector('#tmpl');
- var root = document.querySelector('#host').webkitCreateShadowRoot();
+ var root = document.querySelector('#host').createShadowRoot();
root.appendChild(template.content.cloneNode(true));
if (window.testRunner)
testRunner.showWebInspector();

Powered by Google App Engine
This is Rietveld 408576698