Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / sub-layer-focus-ring-expected.html
blobdbc6806eb8f7aba85b01c2eb29a7dafa6001b582
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 .composited {
6 transform: translateZ(0);
9 .outer {
10 position: absolute;
11 width: 500px;
12 height: 300px;
13 top: 60px;
14 left: 100px;
15 background-color: yellow;
18 .outlined {
19 outline: red auto thin;
20 width: 150px;
21 height: 50px;
22 background-color: lightgrey;
25 .inner {
26 width: 80px;
27 height: 100px;
29 </style>
30 </head>
31 <body>
32 <!-- Still let outer layer composited to avoid the minor edge pixel diffs. -->
33 <div class="composited outer">
34 <div class="outlined">
35 <div class="inner"></div>
36 </div>
37 </div>
38 </body>
39 </html>