chromium/third_party/blink/web_tests/external/wpt/css/css-transforms/animation/scale-and-rotate-both-specified-on-animation-keyframes-ref.html

<!DOCTYPE html>
<html>
<head>
<title>Animating both the "scale" and "rotate" property</title>
<link rel="help" href="https://drafts.csswg.org/css-transforms-2/#individual-transforms">

<style>

#target {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: black;

    transform-origin: bottom left;
    rotate: 90deg;
}

</style>
</head>
<body>
<div id="target"></div>
</body>
</html>