Revert "Fix #20198: Boolean values of the value HTML attribute are now converted to integer values"

This reverts commit 0e50cee88fe7817cd23c764f16a2b1f8feb0694f.
This commit is contained in:
Alexander Makarov
2024-06-19 21:04:17 +03:00
parent 8dacd2aad7
commit 76150c5403
3 changed files with 1 additions and 14 deletions

View File

@ -1231,16 +1231,6 @@ EOD;
$this->assertEquals('', Html::renderTagAttributes(['class' => []]));
$this->assertEquals(' style="width: 100px; height: 200px;"', Html::renderTagAttributes(['style' => ['width' => '100px', 'height' => '200px']]));
$this->assertEquals('', Html::renderTagAttributes(['style' => []]));
$this->assertEquals(' type="submit" value="1"', Html::renderTagAttributes(['type' => 'submit', 'value' => true]));
$this->assertEquals(' type="submit" value="0"', Html::renderTagAttributes(['type' => 'submit', 'value' => false]));
$this->assertEquals(
' type="submit" value="1" disabled',
Html::renderTagAttributes(['type' => 'submit', 'value' => true, 'disabled' => true])
);
$this->assertEquals(
' type="submit" value="0"',
Html::renderTagAttributes(['type' => 'submit', 'value' => false, 'disabled' => false])
);
$attributes = [
'data' => [