OLD | NEW |
1 Tests DOM breakpoints. Bug 42886 | 1 Tests DOM breakpoints. Bug 42886 |
2 | 2 |
3 | 3 |
4 Running: testInsertChild | 4 Running: testInsertChild |
5 Test that 'Subtree Modified' breakpoint is hit when appending a child. | 5 Test that 'Subtree Modified' breakpoint is hit when appending a child. |
6 Set 'Subtree Modified' DOM breakpoint on rootElement. | 6 Set 'Subtree Modified' DOM breakpoint on rootElement. |
7 Append childElement to rootElement. | 7 Append childElement to rootElement. |
8 Script execution paused. | 8 Script execution paused. |
9 Call stack: | 9 Call stack: |
10 0) appendElement (dom-breakpoints.html:12) | 10 0) appendElement (dom-breakpoints.html:12) |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 Script execution resumed. | 116 Script execution resumed. |
117 | 117 |
118 Running: testInsertChildIntoAuthorShadowTree | 118 Running: testInsertChildIntoAuthorShadowTree |
119 Test that 'Subtree Modified' breakpoint on author shadow root is hit when append
ing a child. | 119 Test that 'Subtree Modified' breakpoint on author shadow root is hit when append
ing a child. |
120 Set 'Subtree Modified' DOM breakpoint on author shadow root. | 120 Set 'Subtree Modified' DOM breakpoint on author shadow root. |
121 Append childElement to author shadow root. | 121 Append childElement to author shadow root. |
122 Script execution paused. | 122 Script execution paused. |
123 Call stack: | 123 Call stack: |
124 0) appendElementToOpenShadowRoot (dom-breakpoints.html:79) | 124 0) appendElementToOpenShadowRoot (dom-breakpoints.html:79) |
125 1) (:1) | 125 1) (:1) |
126 Paused on a "Subtree Modified" breakpoint set on #shadow-root, because a new chi
ld was added to that node. | 126 Paused on a "Subtree Modified" breakpoint set on #shadow-root (open), because a
new child was added to that node. |
127 Script execution resumed. | 127 Script execution resumed. |
128 | 128 |
129 Running: testReloadWithShadowElementBreakpoint | 129 Running: testReloadWithShadowElementBreakpoint |
130 Test that shadow DOM breakpoints are persisted between page reloads. | 130 Test that shadow DOM breakpoints are persisted between page reloads. |
131 Set 'Subtree Modified' DOM breakpoint on outerElement. | 131 Set 'Subtree Modified' DOM breakpoint on outerElement. |
132 Page reloaded. | 132 Page reloaded. |
133 Append childElement to outerElement. | 133 Append childElement to outerElement. |
134 Script execution paused. | 134 Script execution paused. |
135 Call stack: | 135 Call stack: |
136 0) appendElementToAuthorShadowTree (dom-breakpoints.html:72) | 136 0) appendElementToAuthorShadowTree (dom-breakpoints.html:72) |
137 1) (:1) | 137 1) (:1) |
138 Paused on a "Subtree Modified" breakpoint set on div#outerElement, because a new
child was added to that node. | 138 Paused on a "Subtree Modified" breakpoint set on div#outerElement, because a new
child was added to that node. |
139 Script execution resumed. | 139 Script execution resumed. |
140 | 140 |
OLD | NEW |