| 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);
|
| }
|
|
|