/[svn]/doc/tmpl/js/jquery-1.11.2.js
ViewVC logotype

Diff of /doc/tmpl/js/jquery-1.11.2.js

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3274 by schoenebeck, Sun Apr 26 20:54:00 2015 UTC revision 3275 by schoenebeck, Mon Jun 5 15:08:11 2017 UTC
# Line 6595  function getWidthOrHeight( elem, name, e Line 6595  function getWidthOrHeight( elem, name, e
6595          // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285          // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285
6596          // MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668          // MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668
6597          if ( val <= 0 || val == null ) {          if ( val <= 0 || val == null ) {
6598                    // HACK for a Safari bug (see rdar #32565741)
6599                    if (elem.firstChild.offsetHeight > 0) {
6600                            return elem.firstChild.offsetHeight;
6601                    }
6602    
6603                  // Fall back to computed then uncomputed css if necessary                  // Fall back to computed then uncomputed css if necessary
6604                  val = curCSS( elem, name, styles );                  val = curCSS( elem, name, styles );
6605                  if ( val < 0 || val == null ) {                  if ( val < 0 || val == null ) {

Legend:
Removed from v.3274  
changed lines
  Added in v.3275

  ViewVC Help
Powered by ViewVC