Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / pasteboard / paste-text-014.html
blobce1bb308e30609f1cd94d1fbda06c61e5bff42f7
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 for (i = 0; i < 4; i++)
17 extendSelectionForwardByCharacterCommand();
18 copyCommand();
19 moveSelectionForwardByCharacterCommand();
20 typeCharacterCommand();
21 moveSelectionBackwardByCharacterCommand();
22 pasteCommand();
25 </script>
27 <title>Editing Test</title>
28 </head>
29 <body contenteditable id="root">
31 See this bug: <a href="rdar://problem/3918712">&lt;rdar://problem/3918712&gt;</a> "Paste as Quotation" in Mail just pastes (&lt;blockquote&gt; tag seems to be lost).
32 Should see two boxes with blockquoted "foo" text, followed by a box with an unquoted "x".
33 <div style="height: 24px"></div>
35 <div id="test" class="editing"><div><blockquote>foo</blockquote></div></div>
36 <div class="editing"></div>
38 <script>
39 runEditingTest();
40 </script>
42 </body>
43 </html>