Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / ignore-empty-focus-ring-rects.html
blobe8fbbb376a472c9d3192fc9ac68356f84a320f59
1 <!DOCTYPE html>
2 <style>
3 .container {
4 position: absolute;
5 width: 100px;
7 .focus {
8 outline: -webkit-focus-ring-color auto 5px;
10 .sub {
11 margin-top: 50px;
12 width: 100px;
13 height: 100px;
14 background-color: green;
16 </style>
17 Should ignore empty rects when drawing focus ring. Passes if there is only a single focus ring around the green square.
18 <div class="container">
19 <span class="focus">
20 <div class="sub"></div>
21 </span>
22 </div>