forked from mirrors/gecko-dev
Automatic update from web-platform-tests Update compositor keyframes on variable change. This patch adds a check to see if any cached conversions were updated during the process of applying animation updates. If so, we need to update snapshots of composited keyframes. Previously, a change to a non-animated variable that is referenced in a keyframe would not trigger a snapshot update. Bug: 1221622, 1245806 Change-Id: I9d90b3819ff1957f63625ff894aed079b455688e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3205715 Commit-Queue: Kevin Ellis <kevers@chromium.org> Reviewed-by: Anders Hartvoll Ruud <andruud@chromium.org> Cr-Commit-Position: refs/heads/main@{#933445} -- wpt-commits: 7ad2e85ea1061cc8403f9812869caceb224fde57 wpt-pr: 31127
27 lines
546 B
HTML
27 lines
546 B
HTML
<!DOCTYPE html>
|
|
<title>Transform animation under large scale</title>
|
|
<link rel="author" title="Kevin Ellis" href="mailto:kevers@chromium.org">
|
|
<link rel="help" href="https://crbug.com/1221622">
|
|
<style>
|
|
#container {
|
|
display: inline-block;
|
|
margin-left: 150px;
|
|
padding: 0;
|
|
transform: scaleX(-1) rotate(90deg);
|
|
}
|
|
#block-1 {
|
|
background: blue;
|
|
height: 200px;
|
|
width: 100px;
|
|
}
|
|
#block-2 {
|
|
background: green;
|
|
height: 100px;
|
|
width: 100px;
|
|
}
|
|
</style>
|
|
|
|
<div id="container">
|
|
<div id="block-1"></div>
|
|
<div id="block-2"></div>
|
|
</div>
|