(element)
| 1205 | } |
| 1206 | |
| 1207 | function readDrawingElement(element) { |
| 1208 | var blips = element |
| 1209 | .getElementsByTagName("a:graphic") |
| 1210 | .getElementsByTagName("a:graphicData") |
| 1211 | .getElementsByTagName("pic:pic") |
| 1212 | .getElementsByTagName("pic:blipFill") |
| 1213 | .getElementsByTagName("a:blip"); |
| 1214 | |
| 1215 | return combineResults(blips.map(readBlip.bind(null, element))); |
| 1216 | } |
| 1217 | |
| 1218 | function readBlip(element, blip) { |
| 1219 | var properties = element.first("wp:docPr").attributes; |
nothing calls this directly
no test coverage detected