Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / reflections / nested-reflection-anchor-point.html
blob2c9116e7a62d3734c76d1d6a9287f7ed4a4fa51b
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5 <style>
6 .outer {
7 width: 120px;
8 height: 230px;
9 margin: 20px 60px;
10 border: 1px solid black;
11 -webkit-box-reflect: right 10px;
14 .inner {
15 margin: 10px;
16 width: 100px;
17 height: 100px;
18 background-color: green;
19 text-align: center;
20 font-size: 50pt;
21 -webkit-box-reflect: below 10px;
22 transform: rotate3d(0, 0, 1, 20deg);
25 .changed {
26 -webkit-transform-origin: top left;
28 </style>
29 <script type="text/javascript" charset="utf-8">
30 if (window.testRunner)
31 testRunner.waitUntilDone();
33 function doTest()
35 window.setTimeout(function() {
36 document.getElementById('inner').className = 'inner composited changed';
37 if (window.testRunner)
38 testRunner.notifyDone();
39 }, 0);
41 window.addEventListener('load', doTest, false);
42 </script>
43 </head>
44 <body>
45 <p>Left and right sides should look symmetrical.</p>
46 <div class="outer composited">
47 <div id="inner" class="inner composited">
49 </div>
50 </div>
51 </body>
52 </html>