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

Unified Diff: LayoutTests/inspector/sources/debugger/dom-breakpoints.html

Issue 935283002: Rename {Author,UserAgent}ShadowRoot to {Open,Closed}ShadowRoot. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix inspector tests Created 5 years, 10 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/sources/debugger/dom-breakpoints.html
diff --git a/LayoutTests/inspector/sources/debugger/dom-breakpoints.html b/LayoutTests/inspector/sources/debugger/dom-breakpoints.html
index 4b0e370d991f4037f842c954ffb96c215ac6dc9b..40de3d5174624c8c5f9d4203adc44b1de4e53806 100644
--- a/LayoutTests/inspector/sources/debugger/dom-breakpoints.html
+++ b/LayoutTests/inspector/sources/debugger/dom-breakpoints.html
@@ -72,7 +72,7 @@ function appendElementToAuthorShadowTree(parentId, childId)
authorShadowElement(parentId).appendChild(child);
}
-function appendElementToAuthorShadowRoot(childId)
+function appendElementToOpenShadowRoot(childId)
{
var child = document.createElement("div");
child.id = childId;
@@ -256,7 +256,7 @@ function test()
InspectorTest.addResult("Test that 'Subtree Modified' breakpoint on author shadow root is hit when appending a child.");
pane._setBreakpoint(authorShadowRoot, pane._breakpointTypes.SubtreeModified, true);
InspectorTest.addResult("Set 'Subtree Modified' DOM breakpoint on author shadow root.");
- InspectorTest.evaluateInPageWithTimeout("appendElementToAuthorShadowRoot('childElement')");
+ InspectorTest.evaluateInPageWithTimeout("appendElementToOpenShadowRoot('childElement')");
InspectorTest.addResult("Append childElement to author shadow root.");
InspectorTest.waitUntilPausedAndDumpStackAndResume(next);
}

Powered by Google App Engine
This is Rietveld 408576698