Ticket #8053: 8053_2.patch
File 8053_2.patch, 749 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 // Webkit: offline element returns empty direction (#8053). 1601 || this.getDirection() 1602 || this.getDocument().$.dir 1603 || this.getDocument().getBody().getDirection( 1 ) 1604 : this.getStyle( 'direction' ) || this.getAttribute( 'dir' ); 1599 1605 }, 1600 1606 1601 1607 /**