| Index: third_party/WebKit/LayoutTests/external/wpt/css/css-transforms-2/scale-parsing-valid.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/css/css-transforms-2/scale-parsing-valid.html b/third_party/WebKit/LayoutTests/external/wpt/css/css-transforms-2/scale-parsing-valid.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..defd9b939806cd39e4906fd043c2234ef8008af0
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/css/css-transforms-2/scale-parsing-valid.html
|
| @@ -0,0 +1,24 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<head>
|
| +<meta charset="utf-8">
|
| +<title>CSS Transform Module Level 2: parsing scale with valid 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_valid_value("scale", "none");
|
| +
|
| +assert_valid_value("scale", "1");
|
| +
|
| +assert_valid_value("scale", "100 200");
|
| +
|
| +assert_valid_value("scale", "100 200 300");
|
| +</script>
|
| +</body>
|
| +</html>
|
|
|