chromium/third_party/blink/web_tests/external/wpt/css/motion/offset-path-shape-rect-001-ref.html

<!doctype html>
<meta charset="utf-8">
<title>CSS Motion Path test reference: &lt;basic-shape&gt; rect() path with explicit arguments</title>
<link rel="author" title="Daniil Sakhapov" href="[email protected]">

<style>
#outer {
  top: 100px;
  left: 100px;
  position: relative;
  width: 600px;
  height: 400px;
}
#box {
  background-color: green;
  transform: translate(520px, 142px) rotate(90deg) translate(40px, 40px);
  border-radius: 50% 50% 0 0;
  width: 100px;
  height: 100px;
}
</style>

<div id="outer">
  <div id="box"></div>
</div>