@@ 2604-2607 (lines=4) @@ | ||
2601 | case 'strike': |
|
2602 | case 'strong': |
|
2603 | case 'tt': |
|
2604 | case 'u': |
|
2605 | $this->afe->reconstruct( $this->stack ); |
|
2606 | $this->afe->push( $this->stack->insertHTMLElement( $value, $attribs ) ); |
|
2607 | return true; |
|
2608 | ||
2609 | case 'nobr': |
|
2610 | $this->afe->reconstruct( $this->stack ); |
|
@@ 2643-2648 (lines=6) @@ | ||
2640 | case 'embed': |
|
2641 | case 'img': |
|
2642 | case 'keygen': |
|
2643 | case 'wbr': |
|
2644 | $this->afe->reconstruct( $this->stack ); |
|
2645 | $this->stack->insertHTMLElement( $value, $attribs ); |
|
2646 | $this->stack->pop(); |
|
2647 | // OMITTED: frameset_ok |
|
2648 | return true; |
|
2649 | ||
2650 | case 'input': |
|
2651 | $this->afe->reconstruct( $this->stack ); |
|
@@ 2650-2656 (lines=7) @@ | ||
2647 | // OMITTED: frameset_ok |
|
2648 | return true; |
|
2649 | ||
2650 | case 'input': |
|
2651 | $this->afe->reconstruct( $this->stack ); |
|
2652 | $this->stack->insertHTMLElement( $value, $attribs ); |
|
2653 | $this->stack->pop(); |
|
2654 | // OMITTED: frameset_ok |
|
2655 | // (hence we don't need to examine the tag's "type" attribute) |
|
2656 | return true; |
|
2657 | ||
2658 | case 'menuitem': |
|
2659 | case 'param': |