Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / unsupported-content / table-delete-001.html
blob438c1b8af9552ed49c33e9d647a146f620cad1dc
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 moveSelectionForwardByLineCommand();
25 for (i = 0; i < 18; i++)
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 table.
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 table should get deleted.
49 Surrounding content that is not selected should (obviously) not be affected.
50 </div>
51 </div>
53 <div class="results">
54 beforeafter
55 </div>
57 <div contenteditable id="root" style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space;">
58 <div id="test" class="editing">
59 before<table border="1">
60 <tr>
61 <td>1</td>
62 <td>2</td>
63 <td>3</td>
64 </tr>
65 <tr>
66 <td>4</td>
67 <td>5</td>
68 <td>6</td>
69 </tr>
70 <tr>
71 <td>7</td>
72 <td>8</td>
73 <td>9</td>
74 </tr>
75 </table>
76 after
77 </div>
78 </div>
80 <script>
81 runEditingTest();
82 </script>
84 </body>
85 </html>