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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 Running: testModifyAttribute | 51 Running: testModifyAttribute |
52 Test that 'Attribute Modified' breakpoint is hit when modifying attribute. | 52 Test that 'Attribute Modified' breakpoint is hit when modifying attribute. |
53 Set 'Attribute Modified' DOM breakpoint on rootElement. | 53 Set 'Attribute Modified' DOM breakpoint on rootElement. |
54 Modify rootElement data-test attribute. | 54 Modify rootElement data-test attribute. |
55 Script execution paused. | 55 Script execution paused. |
56 Call stack: | 56 Call stack: |
57 0) modifyAttribute (dom-breakpoints.html:18) | 57 0) modifyAttribute (dom-breakpoints.html:18) |
58 1) (:1) | 58 1) (:1) |
59 Paused on a "Attribute Modified" breakpoint set on div#rootElement. | 59 Paused on a "Attribute Modified" breakpoint set on div#rootElement. |
60 Script execution resumed. | 60 Script execution resumed. |
| 61 Ensure the breakpoint is actually removed. |
| 62 Modify rootElement data-test attribute. |
61 | 63 |
62 Running: testModifyAttrNode | 64 Running: testModifyAttrNode |
63 Test that 'Attribute Modified' breakpoint is hit when modifying Attr node. | 65 Test that 'Attribute Modified' breakpoint is hit when modifying Attr node. |
64 Set 'Attribute Modified' DOM breakpoint on rootElement. | 66 Set 'Attribute Modified' DOM breakpoint on rootElement. |
65 Modify rootElement data-test attribute. | 67 Modify rootElement data-test attribute. |
66 Script execution paused. | 68 Script execution paused. |
67 Call stack: | 69 Call stack: |
68 0) modifyAttrNode (dom-breakpoints.html:24) | 70 0) modifyAttrNode (dom-breakpoints.html:24) |
69 1) (:1) | 71 1) (:1) |
70 Paused on a "Attribute Modified" breakpoint set on div#rootElement. | 72 Paused on a "Attribute Modified" breakpoint set on div#rootElement. |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 Set 'Subtree Modified' DOM breakpoint on outerElement. | 133 Set 'Subtree Modified' DOM breakpoint on outerElement. |
132 Page reloaded. | 134 Page reloaded. |
133 Append childElement to outerElement. | 135 Append childElement to outerElement. |
134 Script execution paused. | 136 Script execution paused. |
135 Call stack: | 137 Call stack: |
136 0) appendElementToAuthorShadowTree (dom-breakpoints.html:72) | 138 0) appendElementToAuthorShadowTree (dom-breakpoints.html:72) |
137 1) (:1) | 139 1) (:1) |
138 Paused on a "Subtree Modified" breakpoint set on div#outerElement, because a new
child was added to that node. | 140 Paused on a "Subtree Modified" breakpoint set on div#outerElement, because a new
child was added to that node. |
139 Script execution resumed. | 141 Script execution resumed. |
140 | 142 |
OLD | NEW |