Chromium Code Reviews| Index: third_party/WebKit/Source/core/paint/test_data/perspective.html |
| diff --git a/third_party/WebKit/Source/core/paint/test_data/perspective.html b/third_party/WebKit/Source/core/paint/test_data/perspective.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..afe386b101bf3395cd28cd96994e02e28d087a51 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/core/paint/test_data/perspective.html |
| @@ -0,0 +1,17 @@ |
| +<style> |
| +#perspective { |
| + position: absolute; |
| + left: 50px; |
| + top: 100px; |
| + width: 400px; |
| + height: 300px; |
| + perspective: 100px; |
| +} |
| + |
| +#inner { |
| + transform: translateZ(0); |
| +} |
| +</style> |
| +<div id="perspective"> |
| + <div id="inner"></div> |
| +</div> |