%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.41 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/ppaobm/backend/web/adminlte/bower_components/select2/tests/options/ |
Upload File : |
module('Options - Width'); var $ = require('jquery'); var Select2 = require('select2/core'); var select = new Select2($('<select></select>')); test('string passed as width', function (assert) { var $test = $('<select></select>'); var width = select._resolveWidth($test, '80%'); assert.equal(width, '80%'); }); test('width from style attribute', function (assert) { var $test = $('<select style="width: 50%;"></selct>'); var width = select._resolveWidth($test, 'style'); assert.equal(width, '50%'); }); test('width from style returns null if nothing is found', function (assert) { var $test = $('<select></selct>'); var width = select._resolveWidth($test, 'style'); assert.equal(width, null); }); test('width from computed element width', function (assert) { var $style = $( '<style type="text/css">.css-set-width { width: 500px; }</style>' ); var $test = $('<select class="css-set-width"></select>'); $('#qunit-fixture').append($style); $('#qunit-fixture').append($test); var width = select._resolveWidth($test, 'element'); assert.equal(width, '500px'); }); test('resolve gets the style if it is there', function (assert) { var $test = $('<select style="width: 20%;"></selct>'); var width = select._resolveWidth($test, 'resolve'); assert.equal(width, '20%'); }); test('resolve falls back to element if there is no style', function (assert) { var $style = $( '<style type="text/css">.css-set-width { width: 500px; }</style>' ); var $test = $('<select class="css-set-width"></select>'); $('#qunit-fixture').append($style); $('#qunit-fixture').append($test); var width = select._resolveWidth($test, 'resolve'); assert.equal(width, '500px'); });