Code Duplication    Length = 4-4 lines in 2 locations

src/htmLawed/htmLawed.php 2 locations

@@ 901-904 (lines=4) @@
898
            } elseif ('cellspacing' == $k) {
899
                unset($a['cellspacing']);
900
                $c[] = "border-spacing: {$v}px";
901
            } elseif ('clear' == $k) {
902
                unset($a['clear']);
903
                $c[] = 'clear: '.('all' != $v ? $v : 'both');
904
            } elseif ('compact' == $k) {
905
                unset($a['compact']);
906
                $c[] = 'font-size: 85%';
907
            } elseif ('height' == $k or 'width' == $k) {
@@ 929-932 (lines=4) @@
926
            } elseif ('nowrap' == $k) {
927
                unset($a['nowrap']);
928
                $c[] = 'white-space: nowrap';
929
            } elseif ('size' == $k) {
930
                unset($a['size']);
931
                $c[] = 'size: '.$v.'px';
932
            } elseif ('vspace' == $k) {
933
                unset($a['vspace']);
934
                $c[] = "margin-top: {$v}px; margin-bottom: {$v}px";
935
            }