range.js 206 B

123456789101112
  1. export default class MockRange {
  2. selectNode(node) {
  3. this.node = node;
  4. }
  5. getBoundingClientRect() {
  6. return this.node.bounding_box;
  7. }
  8. getClientRects() {
  9. return this.node.dom_rects;
  10. }
  11. }