From: Kevin Day Date: Thu, 23 May 2019 21:57:57 +0000 (-0500) Subject: Apply patch pNotUsedAsHeader-false_positives X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=53882c1becf0f6ce1fec350822a68550b95cf565;p=quail-php Apply patch pNotUsedAsHeader-false_positives This reduces the number of false positives by further restricting the pNotUsedAsHeader test. see: https://git.drupalcode.org/project/quail_api/blob/7.x-1.x/miscellaneous/quail-reduce-pNotUsedAsHeader-false_positives.patch --- diff --git a/quail/common/accessibility_tests.php b/quail/common/accessibility_tests.php index 8efe5b3..6ae31ec 100755 --- a/quail/common/accessibility_tests.php +++ b/quail/common/accessibility_tests.php @@ -4547,13 +4547,19 @@ class pNotUsedAsHeader extends quailTest { ($p->nodeValue == $p->firstChild->nodeValue) && property_exists($p->firstChild, 'tagName') && in_array($p->firstChild->tagName, $this->head_tags)) { - $this->addReport($p); + $matches = preg_match("/\.\W*/", $p->nodeValue); + if ($matches == 0){ + $this->addReport($p); + } } else { $style = $this->css->getStyle($p); if(isset($style['font-weight']) && $style['font-weight'] == 'bold') { - $this->addReport($p); + $matches = preg_match("/\.\W*/", $p->nodeValue); + if ($matches == 0){ + $this->addReport($p); + } } } }