Changeset 267464 in webkit
- Timestamp:
- Sep 22, 2020, 9:47:42 PM (6 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
inspector/agents/InspectorAnimationAgent.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r267463 r267464 1 2020-09-22 Patrick Angle <pangle@apple.com> 2 3 Web Inspector: Change `InspectorAnimationAgent->startTracking` to not error on repeated calls 4 https://bugs.webkit.org/show_bug.cgi?id=216385 5 6 Reviewed by Devin Rousso. 7 8 InpsectorAnimationAgent now mirrors the behavior of other timeline agents by no longer returning an error on a 9 repeated invocation of `startTracking`. 10 11 * inspector/agents/InspectorAnimationAgent.cpp: 12 (WebCore::InspectorAnimationAgent::startTracking): 13 1 14 2020-09-22 Antti Koivisto <antti@apple.com> 2 15 -
trunk/Source/WebCore/inspector/agents/InspectorAnimationAgent.cpp
r266885 r267464 341 341 { 342 342 if (m_instrumentingAgents.trackingAnimationAgent() == this) 343 return makeUnexpected("Animation domain already tracking"_s);343 return { }; 344 344 345 345 m_instrumentingAgents.setTrackingAnimationAgent(this);
Note:
See TracChangeset
for help on using the changeset viewer.