Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / italicizeByCharacter.html
blobd65379b5a42cd944de7304987466f0a18eac9b16
1 <html>
2 <head>
4 <style>
5 .editing {
6 border: 2px solid red;
7 padding: 12px;
8 font-size: 24px;
10 </style>
11 <script src=../editing.js language="JavaScript" type="text/JavaScript" ></script>
13 <script>
15 function editingTest() {
16 execExtendSelectionForwardByCharacterCommand();
17 italicCommand();
20 </script>
22 <title>Editing Test</title>
23 </head>
24 <body>
25 <p>This tests italicizing the first character. The double quotation at the beginning must be italicized.</p>
26 <div contenteditable id="root" class="editing">
27 <span id="test">"The quick brown fox jumps over the lazy dog" uses every
28 letter in the english language.
29 </span>
30 </div>
32 <script>
33 runDumpAsTextEditingTest();
34 </script>
36 </body>
37 </html>