summaryrefslogtreecommitdiff
path: root/spec/frontend/helpers/dom_shims/size_properties.js
blob: a2d5940bd1ea0e69f48d5b87486d8e04ffa60486 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const convertFromStyle = style => {
  if (style.match(/[0-9](px|rem)/g)) {
    return Number(style.replace(/[^0-9]/g, ''));
  }

  return 0;
};

Object.defineProperty(global.HTMLElement.prototype, 'offsetWidth', {
  get() {
    return convertFromStyle(this.style.width || '0px');
  },
});

Object.defineProperty(global.HTMLElement.prototype, 'offsetHeight', {
  get() {
    return convertFromStyle(this.style.height || '0px');
  },
});