Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / unsupported-content / table-delete-003.html
blob00e6cf0bc6aea4a1c56aabd294a391f3ebc82fc4
1 <html>
2 <head>
4 <style>
5 .editing {
6 border: 2px solid red;
7 font-size: 24px;
9 .explanation {
10 border: 4px solid blue;
11 padding: 16px;
12 font-size: 18px;
13 margin-bottom: 10px;
15 .scenario:first-line { font-weight: bold; font-size: 24px; }
16 .expected:first-line { font-weight: bold; font-size: 24px; }
17 .results { margin-bottom: 10px; border: 2px solid green; font-size: 24px; }
18 </style>
19 <script src=../editing.js language="JavaScript" type="text/JavaScript" ></script>
21 <script>
23 function editingTest() {
24 for (i = 0; i < 9; i++)
25 extendSelectionForwardByLineCommand();
26 extendSelectionForwardByCharacterCommand();
27 deleteCommand();
30 </script>
32 <title>Editing Test</title>
33 </head>
34 <body>
36 <div class="explanation">
37 <div class="scenario">
38 Tests:
39 <br>
40 Our ability to "edit around" content the HTML editing code does not yet handle very well.
41 <br><i>For this test: </i>Select and delete a list and some surrounding content.
42 </div>
43 <br>
44 <div class="expected">
45 Expected Results:
46 <br>
47 The content in the red box must exactly match the content in the green box (except for the border color).
48 <br><i>For this test: </i>Only selected content should get deleted.
49 Surrounding content that is not selected should (obviously) not be affected.
50 <br><b>There is a bug: the caret ends up in the wrong position, it should be in the empty paragraph.
51 </div>
52 </div>
54 <div class="results">
55 <br>
56 after
57 </div>
59 <div contenteditable id="root" style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space;">
60 <div id="test" class="editing">
61 before
62 <table border="1">
63 <tr>
64 <td>1</td>
65 <td>2</td>
66 <td>3</td>
67 </tr>
68 <tr>
69 <td>4</td>
70 <td>5</td>
71 <td>6</td>
72 </tr>
73 <tr>
74 <td>7</td>
75 <td>8</td>
76 <td>9</td>
77 </tr>
78 </table>
79 after
80 </div>
81 </div>
83 <script>
84 runEditingTest();
85 </script>
87 </body>
88 </html>