| OLD | NEW |
| 1 Tests that DOM Mutation Observers do not attempt to deliver mutation records whi
le the debugger is paused.Bug 105810 | 1 Tests that DOM Mutation Observers do not attempt to deliver mutation records whi
le the debugger is paused.Bug 105810 |
| 2 | 2 |
| 3 Debugger was enabled. | |
| 4 DIV and observer setup. | 3 DIV and observer setup. |
| 5 deliveryCount = 0 | 4 deliveryCount = 0 |
| 6 setAttribute should have triggered delivery. | 5 setAttribute should have triggered delivery. |
| 7 deliveryCount = 1 | 6 deliveryCount = 1 |
| 8 mutateAndPause invoked. | 7 mutateAndPause invoked. |
| 9 Script execution paused. | 8 Script execution paused. |
| 10 Delivery should not have taken place. | 9 Delivery should not have taken place. |
| 11 deliveryCount = 1 | 10 deliveryCount = 1 |
| 12 Script execution resumed. | 11 Script execution resumed. |
| 13 Second delivery should now have happened. | 12 Second delivery should now have happened. |
| 14 deliveryCount = 2 | 13 deliveryCount = 2 |
| 15 Debugger was disabled. | |
| 16 | 14 |
| OLD | NEW |