https://issues.apache.org/ooo/show_bug.cgi?id=124991
Issue ID: 124991
Issue Type: DEFECT
Summary: Copy/paste: importing of strikethrough attribute
doesn't work
Product: Calc
Version: 4.1.0
Hardware: All
OS: All
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: formatting
Assignee: [email protected]
Reporter: [email protected]
Pasting HTML content into Calc doesn't apply the strikethrough attribute.
Neither the CSS style 'text-decoration', nor the <strike>, <s> or <del> show an
effect.
Steps to reproduce:
1. Open the sample HTML code in a HTML editor (like BlueGriffon)
2. Create a new spreadsheet
3. Copy/paste the HTML to Calc
Sample HTML:
<!DOCTYPE html>
<html>
<head><meta charset="utf-8"></head>
<body>
<table>
<tbody>
<tr>
<td style="text-decoration:line-through;"><s>foo</s></td>
<td style="text-decoration:line-through;"><strike>bar</strike></td>
</tr>
<tr>
<td style="text-decoration:line-through;"><del>baz</del></td>
<td style="text-decoration:line-through;"><s>qux</s></td>
</tr>
</tbody>
</table>
</body>
</html>
Current behavior:
The cell content is pasted but strikethrough is ignored.
Expected behavior:
Strikethrough should be supported like e.g. bold, underline, ...
--
You are receiving this mail because:
You are the assignee for the issue.
You are watching all issue changes.