Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / style / font-family-with-space.html
blob59230a7ceda6f743ee6dded3308158c499a61418
1 <html style="font-family: Arial; font-size: 13px;">
2 <body contenteditable="true" style="font-family: 'Times New Roman'; font-weight: bold;">This text should be Times New Roman bold.</body>
3 <script>
4 document.body.focus();
5 document.execCommand("SelectAll");
6 document.execCommand("Underline");
7 document.execCommand("Copy");
8 window.getSelection().modify("move", "forward", "character");
9 document.execCommand("Paste");
10 </script>
11 </html>