Your IP : 216.73.216.43


Current Path : /var/www/www.indacotrentino.com/www/vendor/phpgt/dom/test/phpunit/HTMLElement/
Upload File :
Current File : /var/www/www.indacotrentino.com/www/vendor/phpgt/dom/test/phpunit/HTMLElement/HTMLUIElementTest.php

<?php
namespace Gt\Dom\Test\HTMLElement;

use Gt\Dom\HTMLDocument;

class HTMLUIElementTest extends HTMLElementTestCase {
	public function testWillValidateDisabled():void {
		$document = new HTMLDocument();
		$sut = $document->createElement("input");
		$sut->disabled = true;
		self::assertFalse($sut->willValidate);
	}

	public function testWillValidateHidden():void {
		$document = new HTMLDocument();
		$sut = $document->createElement("input");
		$sut->type = "hidden";
		self::assertFalse($sut->willValidate);
	}
}