Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / transforms / translate.html
blob8ba9c745e49fd728e75730dce3bdee8e761df609
1 <!DOCTYPE html>
2 <style>
3 div {
4 width: 100px;
5 height: 100px;
6 background-color: blue;
8 .container {
9 translate: 100px 100px;
10 background-color: red;
11 perspective-origin: 150% 150%;
12 perspective: 500px;
14 #box1 {
15 translate: inherit;
17 #box2 {
18 translate: 100% -200% -500px;
20 #box3 {
21 translate: 300px;
23 </style>
25 <div class="container">
26 <div id="box1">1</div>
27 <div id="box2">2</div>
28 </div>
29 <div id="box3">3</div>