Ticket #8053: 8053.patch
File 8053.patch, 713 bytes (added by , 12 years ago) |
---|
-
_source/core/dom/element.js
1595 1595 */ 1596 1596 getDirection : function( useComputed ) 1597 1597 { 1598 return useComputed ? this.getComputedStyle( 'direction' ) : this.getStyle( 'direction' ) || this.getAttribute( 'dir' ); 1598 return useComputed ? 1599 this.getComputedStyle( 'direction' ) 1600 || this.getDocument().$.dir 1601 || this.getDocument().getBody().getDirection( 1 ) // Webkit: offline element returns empty direction (#8053). 1602 : this.getStyle( 'direction' ) || this.getAttribute( 'dir' ); 1599 1603 }, 1600 1604 1601 1605 /**