Code Duplication    Length = 8-8 lines in 2 locations

includes/tidy/Balancer.php 2 locations

@@ 2683-2690 (lines=8) @@
2680
2681
			case 'applet':
2682
			case 'marquee':
2683
			case 'object':
2684
				if ( !$this->stack->inScope( $value ) ) {
2685
					return true; # ignore
2686
				}
2687
				$this->stack->generateImpliedEndTags();
2688
				$this->stack->popTag( $value );
2689
				$this->afe->clearToMarker();
2690
				return true;
2691
2692
			case 'br':
2693
				# Turn </br> into <br>
@@ 3103-3110 (lines=8) @@
3100
		} elseif ( $token === 'endtag' ) {
3101
			switch ( $value ) {
3102
			case 'td':
3103
			case 'th':
3104
				if ( $this->stack->inTableScope( $value ) ) {
3105
					$this->stack->generateImpliedEndTags();
3106
					$this->stack->popTag( $value );
3107
					$this->afe->clearToMarker();
3108
					$this->switchMode( 'inRowMode' );
3109
				}
3110
				return true;
3111
			# OMITTED: <body>
3112
			case 'caption':
3113
			case 'col':