forked from mirrors/gecko-dev
Check all transform-like properties which may affect the scaling factors when computing the suitable scale for animations. Differential Revision: https://phabricator.services.mozilla.com/D19526 --HG-- extra : moz-landing-system : lando
23 lines
372 B
HTML
23 lines
372 B
HTML
<!DOCTYPE HTML>
|
|
<title>Testcase, bug 1122526</title>
|
|
<style>
|
|
|
|
#outer, #inner {
|
|
display: inline-block;
|
|
background: white;
|
|
color: black;
|
|
}
|
|
#inner {
|
|
vertical-align: top;
|
|
height: 100px;
|
|
width: 100px;
|
|
background: repeating-linear-gradient(to top left, yellow, blue 10px);
|
|
will-change: transform;
|
|
}
|
|
|
|
</style>
|
|
|
|
<div id="outer">
|
|
<div id="inner">
|
|
</div>
|
|
</div>
|