upload tizen1.0 source
[framework/web/webkit-efl.git] / LayoutTests / editing / execCommand / italicizeByCharacter.html
1 <html> 
2 <head>
3
4 <style>
5 .editing { 
6     border: 2px solid red; 
7     padding: 12px; 
8     font-size: 24px; 
9 }
10 </style>
11 <script src=../editing.js language="JavaScript" type="text/JavaScript" ></script>
12
13 <script>
14
15 function editingTest() {
16     execExtendSelectionForwardByCharacterCommand();
17     italicCommand();
18 }
19
20 </script>
21
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>
31
32 <script>
33 runDumpAsTextEditingTest();
34 </script>
35
36 </body>
37 </html>