(element)
| 1118 | } |
| 1119 | |
| 1120 | function readTableProperties(element) { |
| 1121 | return readTableStyle(element).map(function(style) { |
| 1122 | return { |
| 1123 | styleId: style.styleId, |
| 1124 | styleName: style.name |
| 1125 | }; |
| 1126 | }); |
| 1127 | } |
| 1128 | |
| 1129 | function readTableRow(element) { |
| 1130 | var properties = element.firstOrEmpty("w:trPr"); |
no test coverage detected