Chromium Code Reviews| Index: LayoutTests/animations/additive-transform-animations-expected.html |
| diff --git a/LayoutTests/animations/additive-transform-animations-expected.html b/LayoutTests/animations/additive-transform-animations-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..371a816e87024075fad5401643749d686c5d3011 |
| --- /dev/null |
| +++ b/LayoutTests/animations/additive-transform-animations-expected.html |
| @@ -0,0 +1,26 @@ |
| + |
|
Mike Lawther (Google)
2013/04/28 23:57:20
nit: extra line here
dstockwell
2013/04/29 23:35:19
Done.
|
| +<!DOCTYPE html> |
| + |
| +<html> |
| +<head> |
| + <style type="text/css"> |
| + .box { |
| + height: 100px; |
| + width: 100px; |
| + background-color: blue; |
| + } |
| + |
| + #box { |
| + -webkit-transform: rotate(90deg) translate(100px, 0); |
| + } |
| + </style> |
| +</head> |
| +<body> |
| + |
| +<div class="box" id="box"></div> |
| +<div id="result"> |
| +PASS - "webkitTransform" property for "box" element at 1s saw something close to: 0,1,-1,0,0,100 |
| +</div> |
| + |
| +</body> |
| +</html> |