blob: 46b442cc48fc1d80424949dbc119c15c6bb5293a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
Tests that stepping into custom element methods will lead to a pause in the callbacks.
Debugger was enabled.
Set timer for test function.
Stepping to constructor...
Stepping into constructor...
PASS: Did step into event listener(createdCallback).
Invoked createdCallback.
Stepping to setAttribute...
Stepping into setAttribute...
PASS: Did step into event listener(attributeChangedCallback).
Invoked attributeChangedCallback.
Stepping to attachedCallback...
Stepping into attachedCallback...
PASS: Did step into event listener(attachedCallback).
Invoked attachedCallback.
Stepping to detachedCallback...
Stepping into detachedCallback...
PASS: Did step into event listener(detachedCallback).
Invoked detachedCallback.
Debugger was disabled.
|