]> Kevux Git Server - quail-php/commitdiff
Apply patch pNotUsedAsHeader-false_positives
authorKevin Day <thekevinday@gmail.com>
Thu, 23 May 2019 21:57:57 +0000 (16:57 -0500)
committerKevin Day <thekevinday@gmail.com>
Thu, 23 May 2019 22:03:02 +0000 (17:03 -0500)
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

index 8efe5b3ee2cc56a9957de428b0691fb6167dceb7..6ae31ec51a171dadcddbe1f5be15f2789e127502 100755 (executable)
@@ -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);
+                                       }
                                }
                        }
                }