Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / spelling / spelling.html
blob42a317f1b23a0cbd6d90f8878551557cb5139dc0
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 typeCharacterCommand('a');
17 insertParagraphCommand();
18 typeCharacterCommand('z');
19 typeCharacterCommand('z');
20 typeCharacterCommand(' ');
23 </script>
25 <title>Editing Test</title>
26 </head>
27 <body>
28 <div>You should see 'a' on the first line below, and 'zz a' on the second line. 'zz' (and only 'zz') should be marked as misspelled.</div>
29 <div contenteditable id="root" class="editing">
30 <span id="test">a</span>
31 </div>
33 <script>
34 runEditingTest();
35 </script>
37 </body>
38 </html>