mirror of
https://github.com/servo/servo.git
synced 2025-07-12 09:53:40 +01:00
23 lines
957 B
HTML
23 lines
957 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Motion Path Module Level 1: getComputedValue().offsetRotate</title>
|
|
<link rel="author" title="Eric Willigers" href="mailto:ericwilligers@chromium.org">
|
|
<link rel="help" href="https://drafts.fxtf.org/motion-1/#offset-rotate-property">
|
|
<meta name="assert" content="offset-rotate reverse is auto 180deg.">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/css/support/computed-testcommon.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="target"></div>
|
|
<script>
|
|
test_computed_value("offset-rotate", "auto", "auto 0deg");
|
|
test_computed_value("offset-rotate", "reverse", "auto 180deg");
|
|
test_computed_value("offset-rotate", "calc(90deg - 0.5turn - 300grad + 0rad)", "-360deg");
|
|
test_computed_value("offset-rotate", "auto 5turn", "auto 1800deg");
|
|
test_computed_value("offset-rotate", "reverse -50grad", "auto 135deg");
|
|
</script>
|
|
</body>
|
|
</html>
|