From 53882c1becf0f6ce1fec350822a68550b95cf565 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Thu, 23 May 2019 16:57:57 -0500 Subject: [PATCH] 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 --- quail/common/accessibility_tests.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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); + } } } } -- 1.8.3.1