2015-08-16 06:59:58 +00:00
( function ( ) {
2013-04-09 15:45:09 +00:00
2022-06-28 10:39:01 +00:00
if ( ! includesModule ( "dimensions" ) ) {
2013-04-09 15:45:09 +00:00
return ;
}
2012-06-05 19:29:46 +00:00
2019-02-18 18:02:38 +00:00
QUnit . module ( "dimensions" , { afterEach : moduleTeardown } ) ;
2008-04-29 03:26:06 +00:00
2013-04-09 15:45:09 +00:00
function pass ( val ) {
2010-01-24 01:49:59 +00:00
return val ;
2013-04-09 15:45:09 +00:00
}
2010-01-24 01:49:59 +00:00
2013-04-09 15:45:09 +00:00
function fn ( val ) {
Implement expectation test instead of using _removeData. Close gh-997.
* Removed inline usage of QUnit.reset() because it is messing with the
expectation model as reset does .empty() which does a recursive cleanData
on everything in #qunit-fixture, so any expectJqData above .reset() would
fail negatively.
Instead of calling reset inline, either updated the following assertions to
take previous assertions' state into account, or broke the test() up into
2 tests at the point where it would call QUnit.reset.
* After introducing the new memory leak discovery a whole bunch of tests were
failing as they didn't clean up everything. However I didn't (yet) add
QUnit.expectJqData calls all over the place because in most if not all of
these cases it is valid data storage. For example in test "data()", there
will be an internal data key for "parsedAttrs". This particular test isn't
intending to test for memory leaks, so therefor I made the new discovery
system only push failures when the test contains at least 1 call to
QUnit.expectJqData.
When not, we'll assume that whatever data is being stored is acceptable
because the relevant elements still exist in the DOM anyway (QUnit.reset
will remove the elements and clean up the data automatically).
I did add a "Always check jQuery.data" mode in the test suite that will
trigger it everywhere. Maybe one day we'll include a call to everywhere,
but for now I'm keeping the status quo: Only consider data left in storage
to be a problem if the test says so ("opt-in").
* Had to move #fx-tests inside the fixture because ".remove()" test would
otherwise remove stuff permanently and cause random other tests to fail
as "#hide div" would yield an empty collection.
(Why wasn't this in the fixture in the first place?)
As a result moving fx-tests into the fixture a whole bunch of tests failed
that relied on arbitrary stuff about the document-wide or fixture-wide
state (e.g. number of divs etc.). So I had to adjust various tests to
limit their sample data to not be so variable and unlimited...
* Moved out tests for expando cleanup into a separate test.
* Fixed implied global variable 'pass' in effects.js that was causing
"TypeError: boolean is not a function" in *UNRELATED* dimensions.js that
uses a global variable "pass = function () {};" ...
* Removed spurious calls to _removeData. The new test exposed various failures
e.g. where div[0] isn't being assigned any data anyway.
(queue.js and attributes.js toggleClass).
* Removed spurious clean up at the bottom of test() functions that are
already covered by the teardown (calling QUnit.reset or removeClass to
supposedly undo any changes).
* Documented the parentheses-less magic line in toggleClass. It appeared that
it would always keep the current class name if there was any (since the
assignment started with "this.className || ...".
Adding parentheses + spacing is 8 bytes (though only 1 in gzip apparently).
Only added the comment for now, though I prefer clarity with logical
operators, I'd rather not face the yayMinPD[1] in this test-related commit.
* Updated QUnit urlConfig to the new format (raw string is deprecated).
* Clean up odd htmlentities in test titles, QUnit escapes this.
(^\s+test\(.*)(>\;) → $1>
(^\s+test\(.*)(<\;) → $1<
[1] jQuery MinJsGz Release Police Department (do the same, download less)
2012-10-17 08:33:47 +00:00
return function ( ) {
return val ;
} ;
2013-04-09 15:45:09 +00:00
}
2010-01-24 01:49:59 +00:00
2012-05-29 16:40:13 +00:00
/ *
=== === == local reference === === =
pass and fn can be used to test passing functions to setters
See testWidth below for an example
2015-08-16 03:45:28 +00:00
pass ( value , assert ) ;
2012-05-29 16:40:13 +00:00
This function returns whatever value is passed in
2015-08-16 03:45:28 +00:00
fn ( value , assert ) ;
2012-05-29 16:40:13 +00:00
Returns a function that returns the value
* /
2015-08-16 03:45:28 +00:00
function testWidth ( val , assert ) {
2015-08-16 06:59:58 +00:00
assert . expect ( 9 ) ;
2015-11-09 22:49:01 +00:00
var $div , $empty ;
2009-03-22 23:25:58 +00:00
2015-08-16 06:59:58 +00:00
$div = jQuery ( "#nothiddendiv" ) ;
$div . width ( val ( 30 ) ) ;
assert . equal ( $div . width ( ) , 30 , "Test set to 30 correctly" ) ;
2015-10-09 19:52:29 +00:00
$div . css ( "display" , "none" ) ;
2015-08-16 06:59:58 +00:00
assert . equal ( $div . width ( ) , 30 , "Test hidden div" ) ;
2015-10-09 19:52:29 +00:00
$div . css ( "display" , "" ) ;
2022-01-04 15:27:18 +00:00
$div . width ( val ( - 1 ) ) ; // handle negative numbers by setting to 0 trac-11604
2015-08-16 06:59:58 +00:00
assert . equal ( $div . width ( ) , 0 , "Test negative width normalized to 0" ) ;
$div . css ( "padding" , "20px" ) ;
assert . equal ( $div . width ( ) , 0 , "Test padding specified with pixels" ) ;
$div . css ( "border" , "2px solid #fff" ) ;
assert . equal ( $div . width ( ) , 0 , "Test border specified with pixels" ) ;
2009-03-22 23:25:58 +00:00
2015-08-16 06:59:58 +00:00
$div . css ( { "display" : "" , "border" : "" , "padding" : "" } ) ;
2009-03-22 23:25:58 +00:00
2015-08-16 06:59:58 +00:00
jQuery ( "#nothiddendivchild" ) . css ( { "width" : 20 , "padding" : "3px" , "border" : "2px solid #fff" } ) ;
assert . equal ( jQuery ( "#nothiddendivchild" ) . width ( ) , 20 , "Test child width with border and padding" ) ;
jQuery ( "#nothiddendiv, #nothiddendivchild" ) . css ( { "border" : "" , "padding" : "" , "width" : "" } ) ;
2009-12-10 05:58:29 +00:00
2015-11-09 22:49:01 +00:00
$empty = jQuery ( ) ;
assert . equal ( $empty . width ( val ( 10 ) ) , $empty , "Make sure that setting a width on an empty set returns the set." ) ;
assert . strictEqual ( $empty . width ( ) , undefined , "Make sure 'undefined' is returned on an empty set" ) ;
2011-01-09 21:58:47 +00:00
2015-08-16 06:59:58 +00:00
assert . equal ( jQuery ( window ) . width ( ) , document . documentElement . clientWidth , "Window width is equal to width reported by window/document." ) ;
2013-04-09 15:45:09 +00:00
}
2010-01-24 01:49:59 +00:00
2015-08-16 06:59:58 +00:00
QUnit . test ( "width()" , function ( assert ) {
2015-08-16 03:45:28 +00:00
testWidth ( pass , assert ) ;
2015-08-16 06:59:58 +00:00
} ) ;
2009-03-22 23:25:58 +00:00
2015-08-16 06:59:58 +00:00
QUnit . test ( "width(Function)" , function ( assert ) {
2015-08-16 03:45:28 +00:00
testWidth ( fn , assert ) ;
2015-08-16 06:59:58 +00:00
} ) ;
2010-01-24 01:49:59 +00:00
2015-08-16 06:59:58 +00:00
QUnit . test ( "width(Function(args))" , function ( assert ) {
2015-08-16 03:45:28 +00:00
assert . expect ( 2 ) ;
2010-12-30 06:34:48 +00:00
2015-08-16 06:59:58 +00:00
var $div = jQuery ( "#nothiddendiv" ) ;
$div . width ( 30 ) . width ( function ( i , width ) {
2015-08-16 03:45:28 +00:00
assert . equal ( width , 30 , "Make sure previous value is correct." ) ;
2010-01-24 01:49:59 +00:00
return width + 1 ;
2015-08-16 06:59:58 +00:00
} ) ;
2010-12-30 06:34:48 +00:00
2015-08-16 03:45:28 +00:00
assert . equal ( $div . width ( ) , 31 , "Make sure value was modified correctly." ) ;
2015-08-16 06:59:58 +00:00
} ) ;
2010-01-24 01:49:59 +00:00
2015-08-16 03:45:28 +00:00
function testHeight ( val , assert ) {
2015-08-16 06:59:58 +00:00
assert . expect ( 9 ) ;
2009-03-22 23:25:58 +00:00
2013-04-09 15:45:09 +00:00
var $div , blah ;
2015-08-16 06:59:58 +00:00
$div = jQuery ( "#nothiddendiv" ) ;
$div . height ( val ( 30 ) ) ;
assert . equal ( $div . height ( ) , 30 , "Test set to 30 correctly" ) ;
2015-10-09 19:52:29 +00:00
$div . css ( "display" , "none" ) ;
2015-08-16 06:59:58 +00:00
assert . equal ( $div . height ( ) , 30 , "Test hidden div" ) ;
2015-10-09 19:52:29 +00:00
$div . css ( "display" , "" ) ;
2022-01-04 15:27:18 +00:00
$div . height ( val ( - 1 ) ) ; // handle negative numbers by setting to 0 trac-11604
2015-08-16 06:59:58 +00:00
assert . equal ( $div . height ( ) , 0 , "Test negative height normalized to 0" ) ;
$div . css ( "padding" , "20px" ) ;
assert . equal ( $div . height ( ) , 0 , "Test padding specified with pixels" ) ;
$div . css ( "border" , "2px solid #fff" ) ;
assert . equal ( $div . height ( ) , 0 , "Test border specified with pixels" ) ;
2009-03-22 23:25:58 +00:00
2015-08-16 06:59:58 +00:00
$div . css ( { "display" : "" , "border" : "" , "padding" : "" , "height" : "1px" } ) ;
2009-12-10 05:58:29 +00:00
2015-08-16 06:59:58 +00:00
jQuery ( "#nothiddendivchild" ) . css ( { "height" : 20 , "padding" : "3px" , "border" : "2px solid #fff" } ) ;
assert . equal ( jQuery ( "#nothiddendivchild" ) . height ( ) , 20 , "Test child height with border and padding" ) ;
jQuery ( "#nothiddendiv, #nothiddendivchild" ) . css ( { "border" : "" , "padding" : "" , "height" : "" } ) ;
2010-09-01 16:05:35 +00:00
2015-08-16 06:59:58 +00:00
blah = jQuery ( "blah" ) ;
assert . equal ( blah . height ( val ( 10 ) ) , blah , "Make sure that setting a height on an empty set returns the set." ) ;
2015-11-09 22:49:01 +00:00
assert . strictEqual ( blah . height ( ) , undefined , "Make sure 'undefined' is returned on an empty set" ) ;
2011-01-09 21:58:47 +00:00
2015-08-16 06:59:58 +00:00
assert . equal ( jQuery ( window ) . height ( ) , document . documentElement . clientHeight , "Window width is equal to width reported by window/document." ) ;
2013-04-09 15:45:09 +00:00
}
2010-01-24 01:49:59 +00:00
2015-08-16 06:59:58 +00:00
QUnit . test ( "height()" , function ( assert ) {
2015-08-16 03:45:28 +00:00
testHeight ( pass , assert ) ;
2015-08-16 06:59:58 +00:00
} ) ;
2010-01-24 01:49:59 +00:00
2015-08-16 06:59:58 +00:00
QUnit . test ( "height(Function)" , function ( assert ) {
2015-08-16 03:45:28 +00:00
testHeight ( fn , assert ) ;
2015-08-16 06:59:58 +00:00
} ) ;
2010-01-24 01:49:59 +00:00
2015-08-16 06:59:58 +00:00
QUnit . test ( "height(Function(args))" , function ( assert ) {
2015-08-16 03:45:28 +00:00
assert . expect ( 2 ) ;
2010-12-30 06:34:48 +00:00
2015-08-16 06:59:58 +00:00
var $div = jQuery ( "#nothiddendiv" ) ;
$div . height ( 30 ) . height ( function ( i , height ) {
2015-08-16 03:45:28 +00:00
assert . equal ( height , 30 , "Make sure previous value is correct." ) ;
2010-01-24 01:49:59 +00:00
return height + 1 ;
2015-08-16 06:59:58 +00:00
} ) ;
2010-12-30 06:34:48 +00:00
2015-08-16 03:45:28 +00:00
assert . equal ( $div . height ( ) , 31 , "Make sure value was modified correctly." ) ;
2015-08-16 06:59:58 +00:00
} ) ;
2009-03-22 23:25:58 +00:00
2015-08-16 06:59:58 +00:00
QUnit . test ( "innerWidth()" , function ( assert ) {
2015-11-09 22:49:01 +00:00
assert . expect ( 7 ) ;
2011-05-25 23:49:50 +00:00
2013-04-09 15:45:09 +00:00
var $div , div ,
2014-12-06 18:23:40 +00:00
$win = jQuery ( window ) ,
$doc = jQuery ( document ) ;
2011-05-25 23:49:50 +00:00
2015-08-16 03:45:28 +00:00
assert . equal ( jQuery ( window ) . innerWidth ( ) , $win . width ( ) , "Test on window" ) ;
assert . equal ( jQuery ( document ) . innerWidth ( ) , $doc . width ( ) , "Test on document" ) ;
2015-11-09 22:49:01 +00:00
assert . strictEqual ( jQuery ( ) . innerWidth ( ) , undefined , "Test on empty set" ) ;
2008-04-29 03:26:06 +00:00
2014-12-06 18:30:31 +00:00
$div = jQuery ( "#nothiddendiv" ) ;
2015-08-16 06:59:58 +00:00
$div . css ( {
2012-07-05 19:52:13 +00:00
"margin" : 10 ,
"border" : "2px solid #fff" ,
"width" : 30
2015-08-16 06:59:58 +00:00
} ) ;
2010-12-30 06:34:48 +00:00
2015-08-16 03:45:28 +00:00
assert . equal ( $div . innerWidth ( ) , 30 , "Test with margin and border" ) ;
2014-12-06 18:30:31 +00:00
$div . css ( "padding" , "20px" ) ;
2015-08-16 03:45:28 +00:00
assert . equal ( $div . innerWidth ( ) , 70 , "Test with margin, border and padding" ) ;
2015-10-09 19:52:29 +00:00
$div . css ( "display" , "none" ) ;
2015-08-16 03:45:28 +00:00
assert . equal ( $div . innerWidth ( ) , 70 , "Test hidden div" ) ;
2010-12-30 06:34:48 +00:00
2008-04-29 03:26:06 +00:00
// reset styles
2015-08-16 06:59:58 +00:00
$div . css ( { "display" : "" , "border" : "" , "padding" : "" , "width" : "" , "height" : "" } ) ;
2010-11-10 04:29:26 +00:00
2013-04-09 15:45:09 +00:00
div = jQuery ( "<div>" ) ;
2010-11-10 04:29:26 +00:00
// Temporarily require 0 for backwards compat - should be auto
2015-08-16 03:45:28 +00:00
assert . equal ( div . innerWidth ( ) , 0 , "Make sure that disconnected nodes are handled." ) ;
2011-01-09 21:58:47 +00:00
div . remove ( ) ;
2015-08-16 06:59:58 +00:00
} ) ;
2008-04-29 03:26:06 +00:00
2015-08-16 06:59:58 +00:00
QUnit . test ( "innerHeight()" , function ( assert ) {
2015-11-09 22:49:01 +00:00
assert . expect ( 7 ) ;
2011-05-25 23:49:50 +00:00
2013-04-09 15:45:09 +00:00
var $div , div ,
2014-12-06 18:23:40 +00:00
$win = jQuery ( window ) ,
$doc = jQuery ( document ) ;
2011-09-30 21:50:07 +00:00
2015-08-16 03:45:28 +00:00
assert . equal ( jQuery ( window ) . innerHeight ( ) , $win . height ( ) , "Test on window" ) ;
assert . equal ( jQuery ( document ) . innerHeight ( ) , $doc . height ( ) , "Test on document" ) ;
2015-11-09 22:49:01 +00:00
assert . strictEqual ( jQuery ( ) . innerHeight ( ) , undefined , "Test on empty set" ) ;
2010-12-30 06:34:48 +00:00
2014-12-06 18:30:31 +00:00
$div = jQuery ( "#nothiddendiv" ) ;
2015-08-16 06:59:58 +00:00
$div . css ( {
2012-07-05 19:52:13 +00:00
"margin" : 10 ,
"border" : "2px solid #fff" ,
"height" : 30
2015-08-16 06:59:58 +00:00
} ) ;
2010-12-30 06:34:48 +00:00
2015-08-16 03:45:28 +00:00
assert . equal ( $div . innerHeight ( ) , 30 , "Test with margin and border" ) ;
2014-12-06 18:30:31 +00:00
$div . css ( "padding" , "20px" ) ;
2015-08-16 03:45:28 +00:00
assert . equal ( $div . innerHeight ( ) , 70 , "Test with margin, border and padding" ) ;
2015-10-09 19:52:29 +00:00
$div . css ( "display" , "none" ) ;
2015-08-16 03:45:28 +00:00
assert . equal ( $div . innerHeight ( ) , 70 , "Test hidden div" ) ;
2010-12-30 06:34:48 +00:00
2008-04-29 03:26:06 +00:00
// reset styles
2015-08-16 06:59:58 +00:00
$div . css ( { "display" : "" , "border" : "" , "padding" : "" , "width" : "" , "height" : "" } ) ;
2010-11-10 04:29:26 +00:00
2013-04-09 15:45:09 +00:00
div = jQuery ( "<div>" ) ;
2010-11-10 04:29:26 +00:00
// Temporarily require 0 for backwards compat - should be auto
2015-08-16 03:45:28 +00:00
assert . equal ( div . innerHeight ( ) , 0 , "Make sure that disconnected nodes are handled." ) ;
2011-01-09 21:58:47 +00:00
div . remove ( ) ;
2015-08-16 06:59:58 +00:00
} ) ;
2008-04-29 03:26:06 +00:00
2015-08-16 06:59:58 +00:00
QUnit . test ( "outerWidth()" , function ( assert ) {
2015-11-09 22:49:01 +00:00
assert . expect ( 12 ) ;
2011-05-25 23:49:50 +00:00
2013-04-09 15:45:09 +00:00
var $div , div ,
2014-12-06 18:23:40 +00:00
$win = jQuery ( window ) ,
2015-11-06 17:24:06 +00:00
$doc = jQuery ( document ) ,
winwidth = $win . prop ( "innerWidth" ) ;
2011-09-30 21:50:07 +00:00
2015-11-06 17:24:06 +00:00
assert . equal ( jQuery ( window ) . outerWidth ( ) , winwidth , "Test on window without margin option" ) ;
assert . equal ( jQuery ( window ) . outerWidth ( true ) , winwidth , "Test on window with margin option" ) ;
2015-08-16 03:45:28 +00:00
assert . equal ( jQuery ( document ) . outerWidth ( ) , $doc . width ( ) , "Test on document without margin option" ) ;
assert . equal ( jQuery ( document ) . outerWidth ( true ) , $doc . width ( ) , "Test on document with margin option" ) ;
2015-11-09 22:49:01 +00:00
assert . strictEqual ( jQuery ( ) . outerWidth ( ) , undefined , "Test on empty set" ) ;
2010-12-30 06:34:48 +00:00
2014-12-06 18:30:31 +00:00
$div = jQuery ( "#nothiddendiv" ) ;
$div . css ( "width" , 30 ) ;
2015-08-16 03:45:28 +00:00
assert . equal ( $div . outerWidth ( ) , 30 , "Test with only width set" ) ;
2014-12-06 18:30:31 +00:00
$div . css ( "padding" , "20px" ) ;
2015-08-16 03:45:28 +00:00
assert . equal ( $div . outerWidth ( ) , 70 , "Test with padding" ) ;
2014-12-06 18:30:31 +00:00
$div . css ( "border" , "2px solid #fff" ) ;
2015-08-16 03:45:28 +00:00
assert . equal ( $div . outerWidth ( ) , 74 , "Test with padding and border" ) ;
2014-12-06 18:30:31 +00:00
$div . css ( "margin" , "10px" ) ;
2015-08-16 03:45:28 +00:00
assert . equal ( $div . outerWidth ( ) , 74 , "Test with padding, border and margin without margin option" ) ;
2014-12-06 18:30:31 +00:00
$div . css ( "position" , "absolute" ) ;
2015-08-16 03:45:28 +00:00
assert . equal ( $div . outerWidth ( true ) , 94 , "Test with padding, border and margin with margin option" ) ;
2015-10-09 19:52:29 +00:00
$div . css ( "display" , "none" ) ;
2015-08-16 03:45:28 +00:00
assert . equal ( $div . outerWidth ( true ) , 94 , "Test hidden div with padding, border and margin with margin option" ) ;
2010-12-30 06:34:48 +00:00
2008-04-29 03:26:06 +00:00
// reset styles
2015-08-16 06:59:58 +00:00
$div . css ( { "position" : "" , "display" : "" , "border" : "" , "padding" : "" , "width" : "" , "height" : "" } ) ;
2010-11-10 04:29:26 +00:00
2013-04-09 15:45:09 +00:00
div = jQuery ( "<div>" ) ;
2010-11-10 04:29:26 +00:00
// Temporarily require 0 for backwards compat - should be auto
2015-08-16 03:45:28 +00:00
assert . equal ( div . outerWidth ( ) , 0 , "Make sure that disconnected nodes are handled." ) ;
2011-01-09 21:58:47 +00:00
div . remove ( ) ;
2015-08-16 06:59:58 +00:00
} ) ;
2008-04-29 03:26:06 +00:00
2015-11-06 17:24:06 +00:00
QUnit . test ( "outerHeight()" , function ( assert ) {
2023-04-04 14:00:55 +00:00
assert . expect ( 14 ) ;
2015-11-06 17:24:06 +00:00
var $div , div ,
$win = jQuery ( window ) ,
$doc = jQuery ( document ) ,
winheight = $win . prop ( "innerHeight" ) ;
assert . equal ( jQuery ( window ) . outerHeight ( ) , winheight , "Test on window without margin option" ) ;
assert . equal ( jQuery ( window ) . outerHeight ( true ) , winheight , "Test on window with margin option" ) ;
assert . equal ( jQuery ( document ) . outerHeight ( ) , $doc . height ( ) , "Test on document without margin option" ) ;
assert . equal ( jQuery ( document ) . outerHeight ( true ) , $doc . height ( ) , "Test on document with margin option" ) ;
2015-11-09 22:49:01 +00:00
assert . strictEqual ( jQuery ( ) . outerHeight ( ) , undefined , "Test on empty set" ) ;
2015-11-06 17:24:06 +00:00
$div = jQuery ( "#nothiddendiv" ) ;
$div . css ( "height" , 30 ) ;
assert . equal ( $div . outerHeight ( ) , 30 , "Test with only height set" ) ;
$div . css ( "padding" , "20px" ) ;
assert . equal ( $div . outerHeight ( ) , 70 , "Test with padding" ) ;
$div . css ( "border" , "2px solid #fff" ) ;
assert . equal ( $div . outerHeight ( ) , 74 , "Test with padding and border" ) ;
$div . css ( "margin" , "10px" ) ;
assert . equal ( $div . outerHeight ( ) , 74 , "Test with padding, border and margin without margin option" ) ;
$div . css ( "position" , "absolute" ) ;
assert . equal ( $div . outerHeight ( true ) , 94 , "Test with padding, border and margin with margin option" ) ;
$div . css ( "display" , "none" ) ;
assert . equal ( $div . outerHeight ( true ) , 94 , "Test hidden div with padding, border and margin with margin option" ) ;
2023-04-04 14:00:55 +00:00
$div . css ( "display" , "" ) ;
$div . css ( "margin" , "-10px" ) ;
assert . equal ( $div . outerHeight ( ) , 74 , "Test with padding, border and negative margin without margin option" ) ;
assert . equal ( $div . outerHeight ( true ) , 54 , "Test with padding, border and negative margin with margin option" ) ;
2015-11-06 17:24:06 +00:00
// reset styles
$div . css ( { "position" : "" , "display" : "" , "border" : "" , "padding" : "" , "width" : "" , "height" : "" } ) ;
div = jQuery ( "<div>" ) ;
// Temporarily require 0 for backwards compat - should be auto
assert . equal ( div . outerWidth ( ) , 0 , "Make sure that disconnected nodes are handled." ) ;
div . remove ( ) ;
} ) ;
2023-09-19 22:54:40 +00:00
QUnit . test ( "fractional getters" , function ( assert ) {
assert . expect ( 8 ) ;
var elem = jQuery ( "<div>" ) . css ( {
width : "10.5px" ,
height : "20.5px" ,
border : "10px solid white" ,
padding : "2px" ,
margin : "3px"
} ) ;
elem . appendTo ( "#qunit-fixture" ) ;
assert . strictEqual ( elem . width ( ) , 10.5 , "width supports fractions" ) ;
assert . strictEqual ( elem . innerWidth ( ) , 14.5 , "innerWidth supports fractions" ) ;
assert . strictEqual ( elem . outerWidth ( ) , 34.5 , "outerWidth supports fractions" ) ;
assert . strictEqual ( elem . outerWidth ( true ) , 40.5 , "outerWidth( true ) supports fractions" ) ;
assert . strictEqual ( elem . height ( ) , 20.5 , "height supports fractions" ) ;
assert . strictEqual ( elem . innerHeight ( ) , 24.5 , "innerHeight supports fractions" ) ;
assert . strictEqual ( elem . outerHeight ( ) , 44.5 , "outerHeight supports fractions" ) ;
assert . strictEqual ( elem . outerHeight ( true ) , 50.5 , "outerHeight( true ) supports fractions" ) ;
} ) ;
2022-01-04 15:27:18 +00:00
QUnit . test ( "child of a hidden elem (or unconnected node) has accurate inner/outer/Width()/Height() see trac-9441 trac-9300" , function ( assert ) {
2015-08-16 06:59:58 +00:00
assert . expect ( 16 ) ;
2011-06-07 03:13:37 +00:00
2011-06-07 03:35:16 +00:00
// setup html
2015-08-16 06:59:58 +00:00
var $divNormal = jQuery ( "<div>" ) . css ( { "width" : "100px" , "height" : "100px" , "border" : "10px solid white" , "padding" : "2px" , "margin" : "3px" } ) ,
2012-04-06 12:39:59 +00:00
$divChild = $divNormal . clone ( ) ,
$divUnconnected = $divNormal . clone ( ) ,
2015-08-16 06:59:58 +00:00
$divHiddenParent = jQuery ( "<div>" ) . css ( "display" , "none" ) . append ( $divChild ) . appendTo ( "body" ) ;
$divNormal . appendTo ( "body" ) ;
2011-06-07 03:13:37 +00:00
2011-06-07 03:35:16 +00:00
// tests that child div of a hidden div works the same as a normal div
2022-01-04 15:27:18 +00:00
assert . equal ( $divChild . width ( ) , $divNormal . width ( ) , "child of a hidden element width() is wrong see trac-9441" ) ;
assert . equal ( $divChild . innerWidth ( ) , $divNormal . innerWidth ( ) , "child of a hidden element innerWidth() is wrong see trac-9441" ) ;
assert . equal ( $divChild . outerWidth ( ) , $divNormal . outerWidth ( ) , "child of a hidden element outerWidth() is wrong see trac-9441" ) ;
assert . equal ( $divChild . outerWidth ( true ) , $divNormal . outerWidth ( true ) , "child of a hidden element outerWidth( true ) is wrong see trac-9300" ) ;
2011-06-07 03:35:16 +00:00
2022-01-04 15:27:18 +00:00
assert . equal ( $divChild . height ( ) , $divNormal . height ( ) , "child of a hidden element height() is wrong see trac-9441" ) ;
assert . equal ( $divChild . innerHeight ( ) , $divNormal . innerHeight ( ) , "child of a hidden element innerHeight() is wrong see trac-9441" ) ;
assert . equal ( $divChild . outerHeight ( ) , $divNormal . outerHeight ( ) , "child of a hidden element outerHeight() is wrong see trac-9441" ) ;
assert . equal ( $divChild . outerHeight ( true ) , $divNormal . outerHeight ( true ) , "child of a hidden element outerHeight( true ) is wrong see trac-9300" ) ;
2011-06-07 03:13:37 +00:00
2012-04-06 12:39:59 +00:00
// tests that child div of an unconnected div works the same as a normal div
2022-01-04 15:27:18 +00:00
assert . equal ( $divUnconnected . width ( ) , $divNormal . width ( ) , "unconnected element width() is wrong see trac-9441" ) ;
assert . equal ( $divUnconnected . innerWidth ( ) , $divNormal . innerWidth ( ) , "unconnected element innerWidth() is wrong see trac-9441" ) ;
assert . equal ( $divUnconnected . outerWidth ( ) , $divNormal . outerWidth ( ) , "unconnected element outerWidth() is wrong see trac-9441" ) ;
assert . equal ( $divUnconnected . outerWidth ( true ) , $divNormal . outerWidth ( true ) , "unconnected element outerWidth( true ) is wrong see trac-9300" ) ;
2012-04-06 12:39:59 +00:00
2022-01-04 15:27:18 +00:00
assert . equal ( $divUnconnected . height ( ) , $divNormal . height ( ) , "unconnected element height() is wrong see trac-9441" ) ;
assert . equal ( $divUnconnected . innerHeight ( ) , $divNormal . innerHeight ( ) , "unconnected element innerHeight() is wrong see trac-9441" ) ;
assert . equal ( $divUnconnected . outerHeight ( ) , $divNormal . outerHeight ( ) , "unconnected element outerHeight() is wrong see trac-9441" ) ;
assert . equal ( $divUnconnected . outerHeight ( true ) , $divNormal . outerHeight ( true ) , "unconnected element outerHeight( true ) is wrong see trac-9300" ) ;
2012-04-06 12:39:59 +00:00
2011-06-07 03:35:16 +00:00
// teardown html
2011-06-07 03:13:37 +00:00
$divHiddenParent . remove ( ) ;
$divNormal . remove ( ) ;
2015-08-16 06:59:58 +00:00
} ) ;
2011-06-07 03:13:37 +00:00
2022-01-04 15:27:18 +00:00
QUnit . test ( "getting dimensions shouldn't modify runtimeStyle see trac-9233" , function ( assert ) {
2015-08-16 03:45:28 +00:00
assert . expect ( 1 ) ;
2011-10-28 14:53:42 +00:00
var $div = jQuery ( "<div>" ) . appendTo ( "#qunit-fixture" ) ,
div = $div . get ( 0 ) ,
runtimeStyle = div . runtimeStyle ;
if ( runtimeStyle ) {
div . runtimeStyle . marginLeft = "12em" ;
div . runtimeStyle . left = "11em" ;
}
$div . outerWidth ( true ) ;
if ( runtimeStyle ) {
2022-01-04 15:27:18 +00:00
assert . equal ( div . runtimeStyle . left , "11em" , "getting dimensions modifies runtimeStyle, see trac-9233" ) ;
2011-10-28 14:53:42 +00:00
} else {
2022-01-04 15:27:18 +00:00
assert . ok ( true , "this browser doesn't support runtimeStyle, see trac-9233" ) ;
2011-10-28 14:53:42 +00:00
}
$div . remove ( ) ;
2015-08-16 06:59:58 +00:00
} ) ;
2011-10-28 14:53:42 +00:00
2015-08-16 03:45:28 +00:00
QUnit . test ( "table dimensions" , function ( assert ) {
assert . expect ( 2 ) ;
2015-07-29 15:10:04 +00:00
2020-03-16 20:49:29 +00:00
var table = jQuery ( "<table><colgroup><col></col><col></col></colgroup><tbody><tr><td></td><td>a</td></tr><tr><td></td><td>a</td></tr></tbody></table>" ) . appendTo ( "#qunit-fixture" ) ,
2015-08-16 06:59:58 +00:00
tdElem = table . find ( "td" ) . first ( ) ,
colElem = table . find ( "col" ) . first ( ) . width ( 300 ) ;
2012-06-07 15:08:31 +00:00
2015-08-16 06:59:58 +00:00
table . find ( "td" ) . css ( { "margin" : 0 , "padding" : 0 } ) ;
2012-08-29 12:50:56 +00:00
2022-01-04 15:27:18 +00:00
assert . equal ( tdElem . width ( ) , tdElem . width ( ) , "width() doesn't alter dimension values of empty cells, see trac-11293" ) ;
assert . equal ( colElem . width ( ) , 300 , "col elements have width(), see trac-12243" ) ;
2015-08-16 06:59:58 +00:00
} ) ;
2012-06-07 15:08:31 +00:00
2018-06-21 05:09:29 +00:00
QUnit . test ( "SVG dimensions (basic content-box)" , function ( assert ) {
assert . expect ( 8 ) ;
2018-08-21 04:13:33 +00:00
var svg = jQuery ( "<svg style='width: 100px; height: 100px;'></svg>" ) . appendTo ( "#qunit-fixture" ) ;
2018-06-21 05:09:29 +00:00
assert . equal ( svg . width ( ) , 100 ) ;
assert . equal ( svg . height ( ) , 100 ) ;
assert . equal ( svg . innerWidth ( ) , 100 ) ;
assert . equal ( svg . innerHeight ( ) , 100 ) ;
assert . equal ( svg . outerWidth ( ) , 100 ) ;
assert . equal ( svg . outerHeight ( ) , 100 ) ;
assert . equal ( svg . outerWidth ( true ) , 100 ) ;
assert . equal ( svg . outerHeight ( true ) , 100 ) ;
svg . remove ( ) ;
} ) ;
QUnit . test ( "SVG dimensions (content-box)" , function ( assert ) {
assert . expect ( 8 ) ;
2018-08-21 04:13:33 +00:00
var svg = jQuery ( "<svg style='width: 100px; height: 100px; box-sizing: content-box; border: 1px solid white; padding: 2px; margin: 3px'></svg>" ) . appendTo ( "#qunit-fixture" ) ;
2018-06-21 05:09:29 +00:00
assert . equal ( svg . width ( ) , 100 ) ;
assert . equal ( svg . height ( ) , 100 ) ;
assert . equal ( svg . innerWidth ( ) , 104 ) ;
assert . equal ( svg . innerHeight ( ) , 104 ) ;
assert . equal ( svg . outerWidth ( ) , 106 ) ;
assert . equal ( svg . outerHeight ( ) , 106 ) ;
assert . equal ( svg . outerWidth ( true ) , 112 ) ;
assert . equal ( svg . outerHeight ( true ) , 112 ) ;
svg . remove ( ) ;
} ) ;
QUnit . test ( "SVG dimensions (border-box)" , function ( assert ) {
assert . expect ( 8 ) ;
2018-08-21 04:13:33 +00:00
var svg = jQuery ( "<svg style='width: 100px; height: 100px; box-sizing: border-box; border: 1px solid white; padding: 2px; margin: 3px'></svg>" ) . appendTo ( "#qunit-fixture" ) ;
2018-06-21 05:09:29 +00:00
2019-03-18 17:44:43 +00:00
assert . equal ( svg . width ( ) , 94 , "width" ) ;
assert . equal ( svg . height ( ) , 94 , "height" ) ;
2018-06-21 05:09:29 +00:00
2019-03-18 17:44:43 +00:00
assert . equal ( svg . innerWidth ( ) , 98 , "innerWidth" ) ;
assert . equal ( svg . innerHeight ( ) , 98 , "innerHeight" ) ;
2018-06-21 05:09:29 +00:00
2019-03-18 17:44:43 +00:00
assert . equal ( svg . outerWidth ( ) , 100 , "outerWidth" ) ;
assert . equal ( svg . outerHeight ( ) , 100 , "outerHeight" ) ;
2018-06-21 05:09:29 +00:00
2019-03-18 17:44:43 +00:00
assert . equal ( svg . outerWidth ( true ) , 106 , "outerWidth( true )" ) ;
assert . equal ( svg . outerHeight ( true ) , 106 , "outerHeight( true )" ) ;
2018-06-21 05:09:29 +00:00
svg . remove ( ) ;
} ) ;
2022-01-04 15:27:18 +00:00
QUnit . test ( "box-sizing:border-box child of a hidden elem (or unconnected node) has accurate inner/outer/Width()/Height() see trac-10413" , function ( assert ) {
2015-08-16 06:59:58 +00:00
assert . expect ( 16 ) ;
2012-04-06 12:39:59 +00:00
// setup html
2015-08-16 06:59:58 +00:00
var $divNormal = jQuery ( "<div>" ) . css ( { "boxSizing" : "border-box" , "width" : "100px" , "height" : "100px" , "border" : "10px solid white" , "padding" : "2px" , "margin" : "3px" } ) ,
2012-04-06 12:39:59 +00:00
$divChild = $divNormal . clone ( ) ,
$divUnconnected = $divNormal . clone ( ) ,
2015-08-16 06:59:58 +00:00
$divHiddenParent = jQuery ( "<div>" ) . css ( "display" , "none" ) . append ( $divChild ) . appendTo ( "body" ) ;
$divNormal . appendTo ( "body" ) ;
2012-04-06 12:39:59 +00:00
// tests that child div of a hidden div works the same as a normal div
2022-01-04 15:27:18 +00:00
assert . equal ( $divChild . width ( ) , $divNormal . width ( ) , "child of a hidden element width() is wrong see trac-10413" ) ;
assert . equal ( $divChild . innerWidth ( ) , $divNormal . innerWidth ( ) , "child of a hidden element innerWidth() is wrong see trac-10413" ) ;
assert . equal ( $divChild . outerWidth ( ) , $divNormal . outerWidth ( ) , "child of a hidden element outerWidth() is wrong see trac-10413" ) ;
assert . equal ( $divChild . outerWidth ( true ) , $divNormal . outerWidth ( true ) , "child of a hidden element outerWidth( true ) is wrong see trac-10413" ) ;
2012-04-06 12:39:59 +00:00
2022-01-04 15:27:18 +00:00
assert . equal ( $divChild . height ( ) , $divNormal . height ( ) , "child of a hidden element height() is wrong see trac-10413" ) ;
assert . equal ( $divChild . innerHeight ( ) , $divNormal . innerHeight ( ) , "child of a hidden element innerHeight() is wrong see trac-10413" ) ;
assert . equal ( $divChild . outerHeight ( ) , $divNormal . outerHeight ( ) , "child of a hidden element outerHeight() is wrong see trac-10413" ) ;
assert . equal ( $divChild . outerHeight ( true ) , $divNormal . outerHeight ( true ) , "child of a hidden element outerHeight( true ) is wrong see trac-10413" ) ;
2012-04-06 12:39:59 +00:00
// tests that child div of an unconnected div works the same as a normal div
2022-01-04 15:27:18 +00:00
assert . equal ( $divUnconnected . width ( ) , $divNormal . width ( ) , "unconnected element width() is wrong see trac-10413" ) ;
assert . equal ( $divUnconnected . innerWidth ( ) , $divNormal . innerWidth ( ) , "unconnected element innerWidth() is wrong see trac-10413" ) ;
assert . equal ( $divUnconnected . outerWidth ( ) , $divNormal . outerWidth ( ) , "unconnected element outerWidth() is wrong see trac-10413" ) ;
assert . equal ( $divUnconnected . outerWidth ( true ) , $divNormal . outerWidth ( true ) , "unconnected element outerWidth( true ) is wrong see trac-10413" ) ;
2012-04-06 12:39:59 +00:00
2022-01-04 15:27:18 +00:00
assert . equal ( $divUnconnected . height ( ) , $divNormal . height ( ) , "unconnected element height() is wrong see trac-10413" ) ;
assert . equal ( $divUnconnected . innerHeight ( ) , $divNormal . innerHeight ( ) , "unconnected element innerHeight() is wrong see trac-10413" ) ;
assert . equal ( $divUnconnected . outerHeight ( ) , $divNormal . outerHeight ( ) , "unconnected element outerHeight() is wrong see trac-10413" ) ;
assert . equal ( $divUnconnected . outerHeight ( true ) , $divNormal . outerHeight ( true ) , "unconnected element outerHeight( true ) is wrong see trac-10413" ) ;
2012-04-06 12:39:59 +00:00
// teardown html
$divHiddenParent . remove ( ) ;
$divNormal . remove ( ) ;
2015-08-16 06:59:58 +00:00
} ) ;
2012-04-06 12:39:59 +00:00
2022-01-04 15:27:18 +00:00
QUnit . test ( "passing undefined is a setter trac-5571" , function ( assert ) {
2015-08-16 06:59:58 +00:00
assert . expect ( 4 ) ;
2022-01-04 15:27:18 +00:00
assert . equal ( jQuery ( "#nothiddendiv" ) . height ( 30 ) . height ( undefined ) . height ( ) , 30 , ".height(undefined) is chainable (trac-5571)" ) ;
assert . equal ( jQuery ( "#nothiddendiv" ) . height ( 30 ) . innerHeight ( undefined ) . height ( ) , 30 , ".innerHeight(undefined) is chainable (trac-5571)" ) ;
assert . equal ( jQuery ( "#nothiddendiv" ) . height ( 30 ) . outerHeight ( undefined ) . height ( ) , 30 , ".outerHeight(undefined) is chainable (trac-5571)" ) ;
assert . equal ( jQuery ( "#nothiddendiv" ) . width ( 30 ) . width ( undefined ) . width ( ) , 30 , ".width(undefined) is chainable (trac-5571)" ) ;
2015-08-16 06:59:58 +00:00
} ) ;
2012-05-21 17:44:19 +00:00
2015-08-16 06:59:58 +00:00
QUnit . test ( "setters with and without box-sizing:border-box" , function ( assert ) {
2016-01-25 23:32:15 +00:00
assert . expect ( 120 ) ;
2015-11-06 21:16:53 +00:00
2016-05-10 09:12:28 +00:00
var parent = jQuery ( "#foo" ) . css ( { width : "200px" , height : "200px" , "font-size" : "16px" } ) ,
2015-11-06 21:16:53 +00:00
el _bb = jQuery ( "<div style='margin:5px;padding:1px;border:2px solid black;box-sizing:border-box;'></div>" ) . appendTo ( parent ) ,
2016-01-25 23:32:15 +00:00
el = jQuery ( "<div style='margin:5px;padding:1px;border:2px solid black;'></div>" ) . appendTo ( parent ) ,
el _bb _np = jQuery ( "<div style='margin:5px; padding:0px; border:0px solid green;box-sizing:border-box;'></div>" ) . appendTo ( parent ) ,
el _np = jQuery ( "<div style='margin:5px; padding:0px; border:0px solid green;'></div>" ) . appendTo ( parent ) ;
2015-11-06 21:16:53 +00:00
jQuery . each ( {
"number" : { set : 100 , expected : 100 } ,
"em" : { set : "10em" , expected : 160 } ,
"percentage" : { set : "50%" , expected : 100 }
} , function ( units , values ) {
assert . equal ( el _bb . width ( values . set ) . width ( ) , values . expected , "test border-box width(" + units + ") by roundtripping" ) ;
assert . equal ( el _bb . innerWidth ( values . set ) . width ( ) , values . expected - 2 , "test border-box innerWidth(" + units + ") by roundtripping" ) ;
assert . equal ( el _bb . outerWidth ( values . set ) . width ( ) , values . expected - 6 , "test border-box outerWidth(" + units + ") by roundtripping" ) ;
assert . equal ( el _bb . outerWidth ( values . set , false ) . width ( ) , values . expected - 6 , "test border-box outerWidth(" + units + ", false) by roundtripping" ) ;
2016-01-25 23:32:15 +00:00
assert . equal ( el _bb . outerWidth ( values . set , true ) . width ( ) , values . expected - 16 , "test border-box outerWidth(" + units + ", true) by roundtripping" ) ;
2015-11-06 21:16:53 +00:00
assert . equal ( el _bb . height ( values . set ) . height ( ) , values . expected , "test border-box height(" + units + ") by roundtripping" ) ;
assert . equal ( el _bb . innerHeight ( values . set ) . height ( ) , values . expected - 2 , "test border-box innerHeight(" + units + ") by roundtripping" ) ;
assert . equal ( el _bb . outerHeight ( values . set ) . height ( ) , values . expected - 6 , "test border-box outerHeight(" + units + ") by roundtripping" ) ;
assert . equal ( el _bb . outerHeight ( values . set , false ) . height ( ) , values . expected - 6 , "test border-box outerHeight(" + units + ", false) by roundtripping" ) ;
2016-01-25 23:32:15 +00:00
assert . equal ( el _bb . outerHeight ( values . set , true ) . height ( ) , values . expected - 16 , "test border-box outerHeight(" + units + ", true) by roundtripping" ) ;
2015-11-06 21:16:53 +00:00
assert . equal ( el . width ( values . set ) . width ( ) , values . expected , "test non-border-box width(" + units + ") by roundtripping" ) ;
assert . equal ( el . innerWidth ( values . set ) . width ( ) , values . expected - 2 , "test non-border-box innerWidth(" + units + ") by roundtripping" ) ;
assert . equal ( el . outerWidth ( values . set ) . width ( ) , values . expected - 6 , "test non-border-box outerWidth(" + units + ") by roundtripping" ) ;
assert . equal ( el . outerWidth ( values . set , false ) . width ( ) , values . expected - 6 , "test non-border-box outerWidth(" + units + ", false) by roundtripping" ) ;
2016-01-25 23:32:15 +00:00
assert . equal ( el . outerWidth ( values . set , true ) . width ( ) , values . expected - 16 , "test non-border-box outerWidth(" + units + ", true) by roundtripping" ) ;
2015-11-06 21:16:53 +00:00
assert . equal ( el . height ( values . set ) . height ( ) , values . expected , "test non-border-box height(" + units + ") by roundtripping" ) ;
assert . equal ( el . innerHeight ( values . set ) . height ( ) , values . expected - 2 , "test non-border-box innerHeight(" + units + ") by roundtripping" ) ;
assert . equal ( el . outerHeight ( values . set ) . height ( ) , values . expected - 6 , "test non-border-box outerHeight(" + units + ") by roundtripping" ) ;
assert . equal ( el . outerHeight ( values . set , false ) . height ( ) , values . expected - 6 , "test non-border-box outerHeight(" + units + ", false) by roundtripping" ) ;
2016-01-25 23:32:15 +00:00
assert . equal ( el . outerHeight ( values . set , true ) . height ( ) , values . expected - 16 , "test non-border-box outerHeight(" + units + ", true) by roundtripping" ) ;
assert . equal ( el _bb _np . width ( values . set ) . width ( ) , values . expected , "test border-box width and negative padding(" + units + ") by roundtripping" ) ;
assert . equal ( el _bb _np . innerWidth ( values . set ) . width ( ) , values . expected , "test border-box innerWidth and negative padding(" + units + ") by roundtripping" ) ;
assert . equal ( el _bb _np . outerWidth ( values . set ) . width ( ) , values . expected , "test border-box outerWidth and negative padding(" + units + ") by roundtripping" ) ;
assert . equal ( el _bb _np . outerWidth ( values . set , false ) . width ( ) , values . expected , "test border-box outerWidth and negative padding(" + units + ", false) by roundtripping" ) ;
assert . equal ( el _bb _np . outerWidth ( values . set , true ) . width ( ) , values . expected - 10 , "test border-box outerWidth and negative padding(" + units + ", true) by roundtripping" ) ;
assert . equal ( el _bb _np . height ( values . set ) . height ( ) , values . expected , "test border-box height and negative padding(" + units + ") by roundtripping" ) ;
assert . equal ( el _bb _np . innerHeight ( values . set ) . height ( ) , values . expected , "test border-box innerHeight and negative padding(" + units + ") by roundtripping" ) ;
assert . equal ( el _bb _np . outerHeight ( values . set ) . height ( ) , values . expected , "test border-box outerHeight and negative padding(" + units + ") by roundtripping" ) ;
assert . equal ( el _bb _np . outerHeight ( values . set , false ) . height ( ) , values . expected , "test border-box outerHeight and negative padding(" + units + ", false) by roundtripping" ) ;
assert . equal ( el _bb _np . outerHeight ( values . set , true ) . height ( ) , values . expected - 10 , "test border-box outerHeight and negative padding(" + units + ", true) by roundtripping" ) ;
assert . equal ( el _np . width ( values . set ) . width ( ) , values . expected , "test non-border-box width and negative padding(" + units + ") by roundtripping" ) ;
assert . equal ( el _np . innerWidth ( values . set ) . width ( ) , values . expected , "test non-border-box innerWidth and negative padding(" + units + ") by roundtripping" ) ;
assert . equal ( el _np . outerWidth ( values . set ) . width ( ) , values . expected , "test non-border-box outerWidth and negative padding(" + units + ") by roundtripping" ) ;
assert . equal ( el _np . outerWidth ( values . set , false ) . width ( ) , values . expected , "test non-border-box outerWidth and negative padding(" + units + ", false) by roundtripping" ) ;
assert . equal ( el _np . outerWidth ( values . set , true ) . width ( ) , values . expected - 10 , "test non-border-box outerWidth and negative padding(" + units + ", true) by roundtripping" ) ;
assert . equal ( el _np . height ( values . set ) . height ( ) , values . expected , "test non-border-box height and negative padding(" + units + ") by roundtripping" ) ;
assert . equal ( el _np . innerHeight ( values . set ) . height ( ) , values . expected , "test non-border-box innerHeight and negative padding(" + units + ") by roundtripping" ) ;
assert . equal ( el _np . outerHeight ( values . set ) . height ( ) , values . expected , "test non-border-box outerHeight and negative padding(" + units + ") by roundtripping" ) ;
assert . equal ( el _np . outerHeight ( values . set , false ) . height ( ) , values . expected , "test non-border-box outerHeight and negative padding(" + units + ", false) by roundtripping" ) ;
assert . equal ( el _np . outerHeight ( values . set , true ) . height ( ) , values . expected - 10 , "test non-border-box outerHeight and negative padding(" + units + ", true) by roundtripping" ) ;
2015-11-06 21:16:53 +00:00
} ) ;
2015-08-16 06:59:58 +00:00
} ) ;
2012-05-21 17:44:19 +00:00
2016-04-10 19:42:44 +00:00
testIframe (
2015-08-16 03:45:28 +00:00
"window vs. large document" ,
2016-04-08 16:00:17 +00:00
"dimensions/documentLarge.html" ,
2016-04-10 19:42:44 +00:00
function ( assert , jQuery , window , document ) {
2015-08-16 06:59:58 +00:00
assert . expect ( 2 ) ;
2012-02-25 18:13:16 +00:00
2015-08-16 03:45:28 +00:00
assert . ok ( jQuery ( document ) . height ( ) > jQuery ( window ) . height ( ) , "document height is larger than window height" ) ;
assert . ok ( jQuery ( document ) . width ( ) > jQuery ( window ) . width ( ) , "document width is larger than window width" ) ;
}
) ;
2012-06-05 19:29:46 +00:00
2015-08-16 03:45:28 +00:00
QUnit . test ( "allow modification of coordinates argument (gh-1848)" , function ( assert ) {
assert . expect ( 1 ) ;
2015-07-29 15:10:04 +00:00
2015-03-16 17:23:21 +00:00
var offsetTop ,
2020-03-16 20:49:29 +00:00
element = jQuery ( "<div></div>" ) . appendTo ( "#qunit-fixture" ) ;
2014-11-11 13:27:44 +00:00
2015-08-16 06:59:58 +00:00
element . offset ( function ( index , coords ) {
2014-11-11 13:27:44 +00:00
coords . top = 100 ;
return coords ;
2015-08-16 06:59:58 +00:00
} ) ;
2014-11-11 13:27:44 +00:00
2015-03-16 17:23:21 +00:00
offsetTop = element . offset ( ) . top ;
2015-08-16 06:59:58 +00:00
assert . ok ( Math . abs ( offsetTop - 100 ) < 0.02 ,
"coordinates are modified (got offset.top: " + offsetTop + ")" ) ;
} ) ;
2014-11-11 13:27:44 +00:00
2016-02-11 19:31:49 +00:00
QUnit . test ( "outside view position (gh-2836)" , function ( assert ) {
// This test ported from gh-2836 example
assert . expect ( 1 ) ;
var parent ,
html = [
"<div id=div-gh-2836>" ,
"<div></div>" ,
"<div></div>" ,
"<div></div>" ,
"<div></div>" ,
"<div></div>" ,
"</div>"
] . join ( "" ) ,
stop = assert . async ( ) ;
2016-02-13 18:14:46 +00:00
parent = jQuery ( html ) ;
2016-02-11 19:31:49 +00:00
parent . appendTo ( "#qunit-fixture" ) ;
parent . one ( "scroll" , function ( ) {
var pos = parent . find ( "div" ) . eq ( 3 ) . position ( ) ;
2016-05-10 09:12:28 +00:00
assert . strictEqual ( pos . top , - 100 ) ;
2016-02-11 19:31:49 +00:00
stop ( ) ;
2016-05-10 09:12:28 +00:00
} ) ;
2016-02-11 19:31:49 +00:00
parent . scrollTop ( 400 ) ;
} ) ;
2017-03-06 22:33:47 +00:00
QUnit . test ( "width/height on element with transform (gh-3193)" , function ( assert ) {
assert . expect ( 2 ) ;
2020-03-16 20:49:29 +00:00
var $elem = jQuery ( "<div style='width: 200px; height: 200px; transform: scale(2);'></div>" )
2017-03-06 22:33:47 +00:00
. appendTo ( "#qunit-fixture" ) ;
assert . equal ( $elem . width ( ) , 200 , "Width ignores transforms" ) ;
assert . equal ( $elem . height ( ) , 200 , "Height ignores transforms" ) ;
} ) ;
2017-03-18 18:19:32 +00:00
QUnit . test ( "width/height on an inline element with no explicitly-set dimensions (gh-3571)" , function ( assert ) {
assert . expect ( 8 ) ;
var $elem = jQuery ( "<span style='border: 2px solid black;padding: 1px;margin: 3px;'>Hello, I'm some text.</span>" ) . appendTo ( "#qunit-fixture" ) ;
jQuery . each ( [ "Width" , "Height" ] , function ( i , method ) {
var val = $elem [ method . toLowerCase ( ) ] ( ) ;
assert . notEqual ( val , 0 , method + " should not be zero on inline element." ) ;
assert . equal ( $elem [ "inner" + method ] ( ) , val + 2 , "inner" + method + " should include padding" ) ;
assert . equal ( $elem [ "outer" + method ] ( ) , val + 6 , "outer" + method + " should include padding and border" ) ;
assert . equal ( $elem [ "outer" + method ] ( true ) , val + 12 , "outer" + method + "(true) should include padding, border, and margin" ) ;
} ) ;
} ) ;
2017-08-07 16:26:03 +00:00
QUnit . test ( "width/height on an inline element with percentage dimensions (gh-3611)" ,
function ( assert ) {
assert . expect ( 4 ) ;
jQuery ( "<div id='gh3611' style='width: 100px;'>" +
"<span style='width: 100%; padding: 0 5px'>text</span>" +
"</div>" ) . appendTo ( "#qunit-fixture" ) ;
var $elem = jQuery ( "#gh3611 span" ) ,
actualWidth = $elem [ 0 ] . getBoundingClientRect ( ) . width ,
marginWidth = $elem . outerWidth ( true ) ,
borderWidth = $elem . outerWidth ( ) ,
paddingWidth = $elem . innerWidth ( ) ,
contentWidth = $elem . width ( ) ;
assert . equal ( Math . round ( borderWidth ) , Math . round ( actualWidth ) ,
".outerWidth(): " + borderWidth + " approximates " + actualWidth ) ;
assert . equal ( marginWidth , borderWidth , ".outerWidth(true) matches .outerWidth()" ) ;
assert . equal ( paddingWidth , borderWidth , ".innerWidth() matches .outerWidth()" ) ;
assert . equal ( contentWidth , borderWidth - 10 , ".width() excludes padding" ) ;
}
) ;
2021-01-11 16:56:08 +00:00
QUnit . test (
2019-10-28 19:38:33 +00:00
"width/height on a table row with phantom borders (gh-3698)" , function ( assert ) {
2017-07-31 16:36:54 +00:00
assert . expect ( 4 ) ;
jQuery ( "<table id='gh3698' style='border-collapse: separate; border-spacing: 0;'><tbody>" +
"<tr style='margin: 0; border: 10px solid black; padding: 0'>" +
"<td style='margin: 0; border: 0; padding: 0; height: 42px; width: 42px;'></td>" +
"</tr>" +
"</tbody></table>" ) . appendTo ( "#qunit-fixture" ) ;
var $elem = jQuery ( "#gh3698 tr" ) ;
jQuery . each ( [ "Width" , "Height" ] , function ( i , method ) {
assert . equal ( $elem [ "outer" + method ] ( ) , 42 ,
"outer" + method + " should match content dimensions" ) ;
assert . equal ( $elem [ "outer" + method ] ( true ) , 42 ,
"outer" + method + "(true) should match content dimensions" ) ;
} ) ;
} ) ;
2017-06-19 19:42:55 +00:00
QUnit . test ( "interaction with scrollbars (gh-3589)" , function ( assert ) {
2017-07-18 19:40:41 +00:00
assert . expect ( 48 ) ;
2017-06-19 19:42:55 +00:00
var i ,
suffix = "" ,
updater = function ( adjustment ) {
return function ( i , old ) {
return old + adjustment ;
} ;
} ,
2020-03-16 20:49:29 +00:00
parent = jQuery ( "<div></div>" )
2017-06-19 19:42:55 +00:00
. css ( { position : "absolute" , width : "1000px" , height : "1000px" } )
. appendTo ( "#qunit-fixture" ) ,
2019-05-13 19:39:56 +00:00
// Workarounds for IE kill fractional output here.
fraction = document . documentMode ? 0 : 0.5 ,
2017-06-19 19:42:55 +00:00
borderWidth = 1 ,
padding = 2 ,
size = 100 + fraction ,
2020-03-16 20:49:29 +00:00
plainBox = jQuery ( "<div></div>" )
2017-07-18 19:40:41 +00:00
. css ( {
"box-sizing" : "content-box" ,
position : "absolute" ,
overflow : "scroll" ,
width : size + "px" ,
height : size + "px"
} ) ,
contentBox = plainBox
. clone ( )
. css ( {
border : borderWidth + "px solid blue" ,
padding : padding + "px"
} ) ,
borderBox = contentBox
. clone ( )
. css ( { "box-sizing" : "border-box" } ) ,
relativeBorderBox = borderBox
. clone ( )
. css ( { position : "relative" } ) ,
$boxes = jQuery (
[ plainBox [ 0 ] , contentBox [ 0 ] , borderBox [ 0 ] , relativeBorderBox [ 0 ] ]
2019-04-29 20:56:09 +00:00
) . appendTo ( parent ) ;
2017-07-18 19:40:41 +00:00
2017-06-19 19:42:55 +00:00
for ( i = 0 ; i < 3 ; i ++ ) {
if ( i === 1 ) {
suffix = " after increasing inner* by " + i ;
size += i ;
$boxes . innerWidth ( updater ( i ) ) . innerHeight ( updater ( i ) ) ;
} else if ( i === 2 ) {
suffix = " after increasing outer* by " + i ;
size += i ;
$boxes . outerWidth ( updater ( i ) ) . outerHeight ( updater ( i ) ) ;
}
2017-07-18 19:40:41 +00:00
assert . equal ( plainBox . innerWidth ( ) , size ,
2017-06-19 19:42:55 +00:00
"plain content-box innerWidth includes scroll gutter" + suffix ) ;
2017-07-18 19:40:41 +00:00
assert . equal ( plainBox . innerHeight ( ) , size ,
2017-06-19 19:42:55 +00:00
"plain content-box innerHeight includes scroll gutter" + suffix ) ;
2017-07-18 19:40:41 +00:00
assert . equal ( plainBox . outerWidth ( ) , size ,
2017-06-19 19:42:55 +00:00
"plain content-box outerWidth includes scroll gutter" + suffix ) ;
2017-07-18 19:40:41 +00:00
assert . equal ( plainBox . outerHeight ( ) , size ,
2017-06-19 19:42:55 +00:00
"plain content-box outerHeight includes scroll gutter" + suffix ) ;
assert . equal ( contentBox . innerWidth ( ) , size + 2 * padding ,
"content-box innerWidth includes scroll gutter" + suffix ) ;
assert . equal ( contentBox . innerHeight ( ) , size + 2 * padding ,
"content-box innerHeight includes scroll gutter" + suffix ) ;
assert . equal ( contentBox . outerWidth ( ) , size + 2 * padding + 2 * borderWidth ,
"content-box outerWidth includes scroll gutter" + suffix ) ;
assert . equal ( contentBox . outerHeight ( ) , size + 2 * padding + 2 * borderWidth ,
"content-box outerHeight includes scroll gutter" + suffix ) ;
2017-07-18 19:40:41 +00:00
assert . equal ( borderBox . innerWidth ( ) , size - 2 * borderWidth ,
2017-06-19 19:42:55 +00:00
"border-box innerWidth includes scroll gutter" + suffix ) ;
2017-07-18 19:40:41 +00:00
assert . equal ( borderBox . innerHeight ( ) , size - 2 * borderWidth ,
2017-06-19 19:42:55 +00:00
"border-box innerHeight includes scroll gutter" + suffix ) ;
2017-07-18 19:40:41 +00:00
assert . equal ( borderBox . outerWidth ( ) , size ,
2017-06-19 19:42:55 +00:00
"border-box outerWidth includes scroll gutter" + suffix ) ;
2017-07-18 19:40:41 +00:00
assert . equal ( borderBox . outerHeight ( ) , size ,
2017-06-19 19:42:55 +00:00
"border-box outerHeight includes scroll gutter" + suffix ) ;
2017-07-18 19:40:41 +00:00
assert . equal ( relativeBorderBox . innerWidth ( ) , size - 2 * borderWidth ,
"relative border-box innerWidth includes scroll gutter" + suffix ) ;
assert . equal ( relativeBorderBox . innerHeight ( ) , size - 2 * borderWidth ,
"relative border-box innerHeight includes scroll gutter" + suffix ) ;
assert . equal ( relativeBorderBox . outerWidth ( ) , size ,
"relative border-box outerWidth includes scroll gutter" + suffix ) ;
assert . equal ( relativeBorderBox . outerHeight ( ) , size ,
"relative border-box outerHeight includes scroll gutter" + suffix ) ;
2017-06-19 19:42:55 +00:00
}
} ) ;
2018-11-11 22:34:43 +00:00
QUnit . test ( "outerWidth/Height for table cells and textarea with border-box in IE 11 (gh-4102)" , function ( assert ) {
assert . expect ( 5 ) ;
2020-03-16 20:49:29 +00:00
var $table = jQuery ( "<table class='border-box' style='border-collapse: separate'></table>" ) . appendTo ( "#qunit-fixture" ) ,
$thead = jQuery ( "<thead></thead>" ) . appendTo ( $table ) ,
$firstTh = jQuery ( "<th style='width: 200px;padding: 5px'></th>" ) ,
$secondTh = jQuery ( "<th style='width: 190px;padding: 5px'></th>" ) ,
$thirdTh = jQuery ( "<th style='width: 180px;padding: 5px'></th>" ) ,
2019-03-27 14:47:33 +00:00
2019-04-29 20:56:09 +00:00
// Most browsers completely ignore the border-box and height settings.
// The computed height is instead just line-height + border.
// Either way, what we're doing in css.js is correct.
2018-12-03 17:03:04 +00:00
$td = jQuery ( "<td style='height: 20px;padding: 5px;border: 1px solid;line-height:18px'>text</td>" ) ,
2019-03-27 14:47:33 +00:00
2020-03-16 20:49:29 +00:00
$tbody = jQuery ( "<tbody></tbody>" ) . appendTo ( $table ) ,
$textarea = jQuery ( "<textarea style='height: 0;padding: 2px;border: 1px solid;box-sizing: border-box'></textarea>" ) . appendTo ( "#qunit-fixture" ) ;
2019-03-27 14:47:33 +00:00
2020-03-16 20:49:29 +00:00
jQuery ( "<tr></tr>" ) . appendTo ( $thead ) . append ( $firstTh ) ;
jQuery ( "<tr></tr>" ) . appendTo ( $thead ) . append ( $secondTh ) ;
jQuery ( "<tr></tr>" ) . appendTo ( $thead ) . append ( $thirdTh ) ;
2018-11-11 22:34:43 +00:00
jQuery ( "<tr><td></td></tr>" ) . appendTo ( $tbody ) . append ( $td ) ;
assert . strictEqual ( $firstTh . outerWidth ( ) , 200 , "First th has outerWidth 200." ) ;
assert . strictEqual ( $secondTh . outerWidth ( ) , 200 , "Second th has outerWidth 200." ) ;
assert . strictEqual ( $thirdTh . outerWidth ( ) , 200 , "Third th has outerWidth 200." ) ;
2019-04-29 20:56:09 +00:00
assert . strictEqual ( $td . outerHeight ( ) , 30 , "outerHeight of td with border-box should include padding." ) ;
2018-11-11 22:34:43 +00:00
assert . strictEqual ( $textarea . outerHeight ( ) , 6 , "outerHeight of textarea with border-box should include padding and border." ) ;
} ) ;
2015-08-16 06:59:58 +00:00
} ) ( ) ;