@@ 2908-2915 (lines=8) @@ | ||
2905 | ||
2906 | case 'applet': |
|
2907 | case 'marquee': |
|
2908 | case 'object': |
|
2909 | if ( !$this->stack->inScope( $value ) ) { |
|
2910 | return true; // ignore |
|
2911 | } |
|
2912 | $this->stack->generateImpliedEndTags(); |
|
2913 | $this->stack->popTag( $value ); |
|
2914 | $this->afe->clearToMarker(); |
|
2915 | return true; |
|
2916 | ||
2917 | case 'br': |
|
2918 | // Turn </br> into <br> |
|
@@ 3348-3355 (lines=8) @@ | ||
3345 | } elseif ( $token === 'endtag' ) { |
|
3346 | switch ( $value ) { |
|
3347 | case 'td': |
|
3348 | case 'th': |
|
3349 | if ( $this->stack->inTableScope( $value ) ) { |
|
3350 | $this->stack->generateImpliedEndTags(); |
|
3351 | $this->stack->popTag( $value ); |
|
3352 | $this->afe->clearToMarker(); |
|
3353 | $this->switchMode( 'inRowMode' ); |
|
3354 | } |
|
3355 | return true; |
|
3356 | // OMITTED: <body> |
|
3357 | case 'caption': |
|
3358 | case 'col': |