Bug #2647 ยป 0001-Revert-boxSizing-change.patch
| src/web/skeleton/Wt.js | ||
|---|---|---|
|
};
|
||
|
this.boxSizing = function(w) {
|
||
|
return (WT.css(w, 'box-sizing')) === 'border-box';
|
||
|
return (w.style[WT.styleAttribute('box-sizing')]) === 'border-box';
|
||
|
};
|
||
|
// Return if an element (or one of its ancestors) is hidden
|
||