browsh/webext/test/mocks/range.js

12 wiersze
206 B
JavaScript

export default class MockRange {
selectNode(node) {
this.node = node;
}
getBoundingClientRect() {
return this.node.bounding_box;
}
getClientRects() {
return this.node.dom_rects;
}
}