-
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 #902 from ckeditor/t/877
Fix for error in PFW when bullets use special characters [#877]
- Loading branch information
Showing
11 changed files
with
1,929 additions
and
2 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
Binary file added
BIN
+13 KB
...ated/_fixtures/Unordered_list_special_char_bullet/Unordered_list_special_char_bullet.docx
Binary file not shown.
27 changes: 27 additions & 0 deletions
27
...lugins/pastefromword/generated/_fixtures/Unordered_list_special_char_bullet/expected.html
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,27 @@ | ||
<ul> | ||
<li> | ||
<span style="font-family:calibri,sans-serif"> | ||
<span style="font-size:11pt"> | ||
<span style="line-height:107%">one</span> | ||
</span> | ||
</span> | ||
<ul> | ||
<li> | ||
<span style="font-family:calibri,sans-serif"> | ||
<span style="font-size:11pt"> | ||
<span style="line-height:107%">two</span> | ||
</span> | ||
</span> | ||
<ul> | ||
<li> | ||
<span style="font-family:calibri,sans-serif"> | ||
<span style="font-size:11pt"> | ||
<span style="line-height:107%">three</span> | ||
</span> | ||
</span> | ||
</li> | ||
</ul> | ||
</li> | ||
</ul> | ||
</li> | ||
</ul> |
916 changes: 916 additions & 0 deletions
916
...pastefromword/generated/_fixtures/Unordered_list_special_char_bullet/word2013/chrome.html
Large diffs are not rendered by default.
Oops, something went wrong.
33 changes: 33 additions & 0 deletions
33
...omword/generated/_fixtures/Unordered_list_special_char_bullet/word2013/expected_ie11.html
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,33 @@ | ||
<ul> | ||
<li> | ||
<span style="font-style:normal"> | ||
<span style="font-weight:normal">one</span> | ||
</span> | ||
<ul style="list-style-type:disc"> | ||
<li> | ||
<span style="color:#000000"> | ||
<span style="font-family:calibri,sans-serif"> | ||
<span style="font-size:11pt"> | ||
<span style="font-style:normal"> | ||
<span style="font-weight:normal">two</span> | ||
</span> | ||
</span> | ||
</span> | ||
</span> | ||
<ul style="list-style-type:disc"> | ||
<li> | ||
<span style="color:#000000"> | ||
<span style="font-family:calibri,sans-serif"> | ||
<span style="font-size:11pt"> | ||
<span style="font-style:normal"> | ||
<span style="font-weight:normal">three</span> | ||
</span> | ||
</span> | ||
</span> | ||
</span> | ||
</li> | ||
</ul> | ||
</li> | ||
</ul> | ||
</li> | ||
</ul> |
Oops, something went wrong.