| 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) |
| 11 1) (:1) | 11 1) (:1) |
| 12 Paused on a "Subtree Modified" breakpoint set on div#rootElement, because a new
child was added to that node. | 12 Paused on a "Subtree Modified" breakpoint set on div#rootElement, because a new
child was added to that node. |
| 13 Script execution resumed. | 13 Script execution resumed. |
| 14 | 14 |
| 15 Running: testBreakpointToggle |
| 16 Test that 'Attribute Modified' breakpoint toggles properly. |
| 17 Set 'Attribute Modified' DOM breakpoint on rootElement. |
| 18 Uncheck 'Attribute Modified' DOM breakpoint on rootElement. |
| 19 Modify attribute for rootElement. |
| 20 Test that 'Attribute Modified' breakpoint is not hit when disabled. |
| 21 Check 'Attribute Modified' DOM breakpoint on rootElement. |
| 22 Modify attribute for rootElement. |
| 23 Test that 'Attribute Modified' breakpoint is hit when re-enabled. |
| 24 Script execution paused. |
| 25 Call stack: |
| 26 0) modifyAttribute (dom-breakpoints.html:18) |
| 27 1) (:1) |
| 28 Paused on a "Attribute Modified" breakpoint set on div#rootElement. |
| 29 Script execution resumed. |
| 30 |
| 15 Running: testInsertGrandchild | 31 Running: testInsertGrandchild |
| 16 Test that 'Subtree Modified' breakpoint is hit when appending a grandchild. | 32 Test that 'Subtree Modified' breakpoint is hit when appending a grandchild. |
| 17 Append grandchildElement to childElement. | 33 Append grandchildElement to childElement. |
| 18 Script execution paused. | 34 Script execution paused. |
| 19 Call stack: | 35 Call stack: |
| 20 0) appendElement (dom-breakpoints.html:12) | 36 0) appendElement (dom-breakpoints.html:12) |
| 21 1) (:1) | 37 1) (:1) |
| 22 Paused on a "Subtree Modified" breakpoint set on div#rootElement, because a new
child was added to its descendant div#childElement. | 38 Paused on a "Subtree Modified" breakpoint set on div#rootElement, because a new
child was added to its descendant div#childElement. |
| 23 Script execution resumed. | 39 Script execution resumed. |
| 24 | 40 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 51 Running: testModifyAttribute | 67 Running: testModifyAttribute |
| 52 Test that 'Attribute Modified' breakpoint is hit when modifying attribute. | 68 Test that 'Attribute Modified' breakpoint is hit when modifying attribute. |
| 53 Set 'Attribute Modified' DOM breakpoint on rootElement. | 69 Set 'Attribute Modified' DOM breakpoint on rootElement. |
| 54 Modify rootElement data-test attribute. | 70 Modify rootElement data-test attribute. |
| 55 Script execution paused. | 71 Script execution paused. |
| 56 Call stack: | 72 Call stack: |
| 57 0) modifyAttribute (dom-breakpoints.html:18) | 73 0) modifyAttribute (dom-breakpoints.html:18) |
| 58 1) (:1) | 74 1) (:1) |
| 59 Paused on a "Attribute Modified" breakpoint set on div#rootElement. | 75 Paused on a "Attribute Modified" breakpoint set on div#rootElement. |
| 60 Script execution resumed. | 76 Script execution resumed. |
| 77 Ensure the breakpoint is actually removed. |
| 78 Modify rootElement data-test attribute. |
| 61 | 79 |
| 62 Running: testModifyAttrNode | 80 Running: testModifyAttrNode |
| 63 Test that 'Attribute Modified' breakpoint is hit when modifying Attr node. | 81 Test that 'Attribute Modified' breakpoint is hit when modifying Attr node. |
| 64 Set 'Attribute Modified' DOM breakpoint on rootElement. | 82 Set 'Attribute Modified' DOM breakpoint on rootElement. |
| 65 Modify rootElement data-test attribute. | 83 Modify rootElement data-test attribute. |
| 66 Script execution paused. | 84 Script execution paused. |
| 67 Call stack: | 85 Call stack: |
| 68 0) modifyAttrNode (dom-breakpoints.html:24) | 86 0) modifyAttrNode (dom-breakpoints.html:24) |
| 69 1) (:1) | 87 1) (:1) |
| 70 Paused on a "Attribute Modified" breakpoint set on div#rootElement. | 88 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. | 149 Set 'Subtree Modified' DOM breakpoint on outerElement. |
| 132 Page reloaded. | 150 Page reloaded. |
| 133 Append childElement to outerElement. | 151 Append childElement to outerElement. |
| 134 Script execution paused. | 152 Script execution paused. |
| 135 Call stack: | 153 Call stack: |
| 136 0) appendElementToAuthorShadowTree (dom-breakpoints.html:72) | 154 0) appendElementToAuthorShadowTree (dom-breakpoints.html:72) |
| 137 1) (:1) | 155 1) (:1) |
| 138 Paused on a "Subtree Modified" breakpoint set on div#outerElement, because a new
child was added to that node. | 156 Paused on a "Subtree Modified" breakpoint set on div#outerElement, because a new
child was added to that node. |
| 139 Script execution resumed. | 157 Script execution resumed. |
| 140 | 158 |
| OLD | NEW |