Lines Matching refs:strictErrorChecking
2 DomDocument::$strictErrorChecking - ensure turning off actually works
16 echo "See if strictErrorChecking is on\n";
17 var_dump($doc->strictErrorChecking);
19 echo "Should throw DOMException when strictErrorChecking is on\n";
30 echo "Turn strictErrorChecking off\n";
31 $doc->strictErrorChecking = false;
33 echo "See if strictErrorChecking is off\n";
34 var_dump($doc->strictErrorChecking);
36 echo "Should raise PHP error because strictErrorChecking is off\n";
49 See if strictErrorChecking is on
51 Should throw DOMException when strictErrorChecking is on
54 Turn strictErrorChecking off
55 See if strictErrorChecking is off
57 Should raise PHP error because strictErrorChecking is off