(position, name, value)
| 283 | } |
| 284 | |
| 285 | setHTMLAttributeAtPosition(position, name, value) { |
| 286 | const block = this.getBlockAtPosition(position) |
| 287 | const updatedBlock = block.addHTMLAttribute(name, value) |
| 288 | return this.replaceBlock(block, updatedBlock) |
| 289 | } |
| 290 | |
| 291 | insertBlockBreakAtRange(range) { |
| 292 | let blocks |
no test coverage detected