New issue
Advanced search Search tips

Issue 906147 link

Starred by 1 user

Issue metadata

Status: Available
Owner:
Cc:
Components:
EstimatedDays: ----
NextAction: ----
OS: ----
Pri: 3
Type: Bug



Sign in to add a comment

Feature policy violation reports for CSS transitions

Project Member Reported by ekaramad@chromium.org, Nov 16

Issue description

It turns out finding the violations for 'layout-animations' policy at the time CSS resources are being parsed is a bit tricky. Naturally, CSS code such as:
{
  transition: width 1s;
}
is a "good" case where we can lawfully generate a report for. However, code such as
{
  transition-duration: 1s;
}
would potentially cause animations for all the banned properties; e.g., when followed up by something like:
div:hover {
  width: 200px;
}

There are other perhaps other subtitles we need to consider.
 

Sign in to add a comment