Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / table-row-outline-paint.html
blob3fb6e31d029e0359c794cd047cb6f603c8610094
1 <!DOCTYPE>
2 <title> Test for bug https://bugs.webkit.org/show_bug.cgi?id=92389</title>
3 <body>
4 <style>
5 td {
6 width: 50px;
7 height: 50px;
8 border: 1px solid;
10 .outline-first {
11 outline: 5px solid green;
13 .outline-second {
14 outline: 5px solid yellow;
16 </style>
17 <table>
18 <tr class="outline-first">
19 <td></td>
20 <td></td>
21 </tr>
22 <tr class="outline-second">
23 <td></td>
24 <td></td>
25 </tr>
26 </table>
27 </body>