| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <?php
- /**
- * Test: Nette\Utils\Html style & class attribute.
- */
- declare(strict_types=1);
- use Nette\Utils\Html;
- use Tester\Assert;
- require __DIR__ . '/../bootstrap.php';
- test('', function () {
- $el = Html::el('div');
- $el->style[] = 'text-align:right';
- $el->style[] = null;
- $el->style[] = 'background-color: blue';
- $el->class[] = 'one';
- $el->class[] = null;
- $el->class[] = 'two';
- Assert::same('<div style="text-align:right;background-color: blue" class="one two"></div>', (string) $el);
- $el->style = null;
- $el->style['text-align'] = 'left';
- $el->style['background-color'] = 'green';
- Assert::same('<div style="text-align:left;background-color:green" class="one two"></div>', (string) $el);
- });
- test('', function () {
- $el = Html::el('div');
- $el->appendAttribute('style', 'text-align:right');
- $el->appendAttribute('style', null);
- $el->appendAttribute('style', 'background-color: blue');
- $el->appendAttribute('class', 'one');
- $el->appendAttribute('class', null);
- $el->appendAttribute('class', 'two');
- Assert::same('<div style="text-align:right;background-color: blue" class="one two"></div>', (string) $el);
- $el->setAttribute('style', null);
- $el->appendAttribute('style', 'text-align', 'left');
- $el->appendAttribute('style', 'background-color', 'green');
- Assert::same('<div style="text-align:left;background-color:green" class="one two"></div>', (string) $el);
- $el->setAttribute('style', [
- 'text-align' => 'right',
- 'background-color' => 'red',
- ]);
- Assert::same('<div style="text-align:right;background-color:red" class="one two"></div>', (string) $el);
- $el->appendAttribute('style', [
- 'text-align' => 'center',
- 'color' => 'orange',
- ]);
- Assert::same('<div style="text-align:center;color:orange;background-color:red" class="one two"></div>', (string) $el);
- });
- test('append', function () {
- $el = Html::el('div');
- $el->style('color', 'white');
- $el->style('background-color', 'blue');
- $el->appendAttribute('style', 'text-align', 'left');
- $el->class = 'one';
- $el->class('', true);
- $el->class('two', true);
- $el->id('my', true);
- Assert::same('<div style="color:white;background-color:blue;text-align:left" class="one two" id="my"></div>', (string) $el);
- });
- test('append II', function () {
- $el = Html::el('div');
- $el->style[] = 'text-align:right';
- $el->style('', true);
- $el->style('background-color: blue', true);
- $el->appendAttribute('style', 'color: orange', true);
- Assert::same('<div style="text-align:right;background-color: blue;color: orange"></div>', (string) $el);
- });
- test('append III', function () {
- $el = Html::el('div');
- $el->class('top', true);
- $el->class('active', true);
- $el->appendAttribute('class', 'pull-right', true);
- Assert::same('<div class="top active pull-right"></div>', (string) $el);
- $el->class('top', null);
- $el->class('active', false);
- $el->appendAttribute('class', 'pull-right', false);
- Assert::same('<div></div>', (string) $el);
- });
|