fune/testing/web-platform/tests/css/css-transforms/parsing/rotate-parsing-invalid.html
Eric Willigers a9c3410441 Bug 1579571 [wpt PR 18912] - [css-transform] Fix link to transform-origin spec, a=testonly
Automatic update from web-platform-tests
[css-transform] Fix link to transform-origin spec (#18912)

transform-origin is in CSS Transforms 1
https://drafts.csswg.org/css-transforms/#transform-origin-property

Remove unnecessary author tags.
--

wpt-commits: 0106544dac3cdfc94b476ee798931182cbdfb014
wpt-pr: 18912
2019-10-07 10:09:51 +00:00

27 lines
912 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Transform Module Level 2: parsing rotate with invalid values</title>
<link rel="help" href="https://drafts.csswg.org/css-transforms-2/#propdef-rotate">
<meta name="assert" content="rotate supports only the grammar 'none | <number>{3}? <angle>'.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/parsing-testcommon.js"></script>
</head>
<body>
<script>
test_invalid_value("rotate", "100px");
test_invalid_value("rotate", "100 400deg");
test_invalid_value("rotate", "100 200 400deg");
test_invalid_value("rotate", "100 200 300 500 400deg");
test_invalid_value("rotate", "x y 45deg");
test_invalid_value("rotate", "45deg x y");
test_invalid_value("rotate", "z");
test_invalid_value("rotate", "1 2");
test_invalid_value("rotate", "1 2 3");
</script>
</body>
</html>