Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text / capitalize-empty-generated-string.html
blob12ddaef1b52a830840617165590d2e2715a8ca09
1 <html>
2 <head>
3 <title></title>
4 <style type="text/css">
5 span.cap { text-transform: capitalize; }
6 span.gen:before { content: ""; }
7 </style>
8 </head>
9 <body>
10 <p>
11 This is a regression test for <i><a href="https://bugs.webkit.org/show_bug.cgi?id=9432">http://bugzilla.opendarwin.org/show_bug.cgi?id=9432</a>
12 REGRESSION: crash in capitalization code due to empty-string generated content</i>.
13 </p>
14 <hr>
15 <p>
16 <span class="cap">lorem <span class="gen">ipsum</span></span>
17 <i>should be</i> Lorem Ipsum
18 </p>
19 <p>
20 <span class="cap">lor<span class="gen">em ipsum</span></span>
21 <i>should be</i> Lorem Ipsum
22 </p>
23 </body>