Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 350784
Collapse All | Expand All

(-)js/org/eclipse/rwt/widgets/MultiCellWidget.js (-1 / +1 lines)
Lines 796-802 Link Here
796
          style.width = wrapWidth + "px";
796
          style.width = wrapWidth + "px";
797
        }
797
        }
798
        var result;
798
        var result;
799
        if( org.eclipse.rwt.Client.isGecko() && element.getBoundingClientRect ) {
799
        if( element.getBoundingClientRect ) {
800
          // See Bug 340841
800
          // See Bug 340841
801
          var bounds = element.getBoundingClientRect();
801
          var bounds = element.getBoundingClientRect();
802
          // In FF 3.0.x getBoundingClientRect has no width/height properties
802
          // In FF 3.0.x getBoundingClientRect has no width/height properties
(-)js/qx/ui/basic/Label.js (-1 / +3 lines)
Lines 106-112 Link Here
106
106
107
        this._measureNode = node;
107
        this._measureNode = node;
108
      }
108
      }
109
109
      if( !qx.core.Variant.isSet( "qx.client", "mshtml" ) ) {
110
        node.style.font = "";
111
      }
110
      return node;
112
      return node;
111
    }
113
    }
112
  },
114
  },

Return to bug 350784