-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #448 from cksource/t/417
Tableresize plugin should check if table body exists. Fixes #417.
- Loading branch information
Showing
8 changed files
with
141 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<div id="editor"> | ||
|
||
<table border="1" style="width:500px"> | ||
<tfoot> | ||
<tr> | ||
<td>1</td> | ||
<td>2</td> | ||
<td>3</td> | ||
</tr> | ||
</tfoot> | ||
</table> | ||
|
||
<p>Foo Bar...</p> | ||
|
||
</div> | ||
|
||
<script> | ||
CKEDITOR.replace( 'editor' ); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
@bender-ui: collapsed | ||
@bender-tags: bug, 4.7.1, 417 | ||
@bender-ckeditor-plugins: wysiwygarea, toolbar, table, tableresize | ||
|
||
1. Focus editor. | ||
2. Move mouse over the table. | ||
* **Expected**: No error is thrown in the browser console. | ||
3. Try to resize one of the table columns. | ||
* **Expected**: The cursor changes to horizontal resize cursor when hovering over table borders. It is possible to | ||
resize table. The `column pillar` is visible while resizing table. | ||
|
||
**Unexpected**: An error in the browser console occurs. Not possible to resize table. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<div id="editor"> | ||
|
||
<table border="1" style="width:500px"> | ||
<thead> | ||
<tr> | ||
<td>1</td> | ||
<td>2</td> | ||
<td>3</td> | ||
</tr> | ||
</thead> | ||
</table> | ||
|
||
<p>Foo Bar...</p> | ||
|
||
</div> | ||
|
||
<script> | ||
CKEDITOR.replace( 'editor' ); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
@bender-ui: collapsed | ||
@bender-tags: bug, 4.7.1, 417 | ||
@bender-ckeditor-plugins: wysiwygarea, toolbar, table, tableresize | ||
|
||
1. Focus editor. | ||
2. Move mouse over the table. | ||
* **Expected**: No error is thrown in the browser console. | ||
3. Try to resize one of the table columns. | ||
* **Expected**: The cursor changes to horizontal resize cursor when hovering over table borders. It is possible to | ||
resize table. The `column pillar` is visible while resizing table. | ||
|
||
**Unexpected**: An error in the browser console occurs. Not possible to resize table. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters