Open
Bug 1275466
Opened 9 years ago
Updated 2 years ago
Web animations appended to the document after animate() is not shown in devtools
Categories
(Core :: DOM: Animation, defect, P3)
Core
DOM: Animation
Tracking
()
NEW
Tracking | Status | |
---|---|---|
firefox49 | --- | affected |
People
(Reporter: hiro, Unassigned)
References
Details
Attachments
(1 file)
549 bytes,
text/html
|
Details |
Animation in below case is not shown up in devtools at all.
var div = document.createElement("div");
div.setAttribute("id", "target");
div.animate({ transform: ['translateX(0px)', 'translateX(100px)' ]},
{ duration: 2000 });
document.body.appendChild(div);
I guess we need to notify the animation to mutation observer somewhere.
Reporter | ||
Updated•9 years ago
|
Summary: Web animations appended to the document after animate() is not shown in devetools → Web animations appended to the document after animate() is not shown in devtools
Reporter | ||
Comment 1•8 years ago
|
||
I think we should do something in Element::BindToTree() with MayHaveAnimations() check.
Updated•6 years ago
|
Priority: -- → P5
Comment 2•6 years ago
|
||
I guess this is probably worth fixing eventually since it affects the reliability of our tools. Upgrading to P3.
Priority: P5 → P3
Updated•2 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•