Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / viewport-em.svg
blob2782efdd80d73ab9ab47229e34912acaa260c9d0
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head>
3 <title>'em' widths</title>
4 <style type="text/css">
5 p { color: navy; }
6 div { margin: 1em 0; height: 40px; width: 10em; background: navy; }
7 </style>
8 </head>
9 <body>
10 <p>There should be two identical bars below.</p>
11 <p>First bar:</p>
12 <div></div>
13 <p>Second bar:</p>
14 <svg preserveAspectRatio="none" height="40px" width="10em" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
15 <rect x="0" y="0" width="100" height="100" fill="navy"/>
16 </svg>
17 </body>
18 </html>