| Index: third_party/WebKit/LayoutTests/external/wpt/css/css-transforms-2/scale-parsing-invalid.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/css/css-transforms-2/scale-parsing-invalid.html b/third_party/WebKit/LayoutTests/external/wpt/css/css-transforms-2/scale-parsing-invalid.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e95e5a06e0fe3ed4473c96c4c448c595e224bbfa
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/css/css-transforms-2/scale-parsing-invalid.html
|
| @@ -0,0 +1,20 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<head>
|
| +<meta charset="utf-8">
|
| +<title>CSS Transform Module Level 2: parsing scale with invalid values</title>
|
| +<link rel="author" title="Eric Willigers" href="mailto:ericwilligers@google.com">
|
| +<link rel="help" href="https://drafts.csswg.org/css-transforms-2/#propdef-scale">
|
| +<meta name="assert" content="scale value: none | <number>{1,3}">
|
| +<script src="/resources/testharness.js"></script>
|
| +<script src="/resources/testharnessreport.js"></script>
|
| +<script src="resources/testcommon.js"></script>
|
| +</head>
|
| +<body>
|
| +<script>
|
| +assert_invalid_value("scale", "100px");
|
| +
|
| +assert_invalid_value("scale", "100 200 300 400");
|
| +</script>
|
| +</body>
|
| +</html>
|
|
|