diff options
Diffstat (limited to 'testing/web-platform/tests/css/motion/offset-path-coord-box-001-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/motion/offset-path-coord-box-001-ref.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/motion/offset-path-coord-box-001-ref.html b/testing/web-platform/tests/css/motion/offset-path-coord-box-001-ref.html new file mode 100644 index 0000000000..679b43fe70 --- /dev/null +++ b/testing/web-platform/tests/css/motion/offset-path-coord-box-001-ref.html @@ -0,0 +1,26 @@ +<!doctype html> +<meta charset="utf-8"> +<title>CSS Motion Path test reference: <coord-box> <border-box></title> +<link rel="author" title="Daniil Sakhapov" href="sakhapov@google.com"> + +<style> +#outer { + top: 100px; + left: 100px; + position: relative; + border-radius: 50%; + border: 5px solid black; + width: 600px; + height: 400px; +} +#box { + background-color: green; + transform: translate(483.441px, 19.1699px) rotate(37.2267deg); + width: 100px; + height: 100px; +} +</style> + +<div id="outer"> + <div id="box"></div> +</div> |