|
@@ 2402-2405 (lines=4) @@
|
| 2399 |
|
case 'strike': |
| 2400 |
|
case 'strong': |
| 2401 |
|
case 'tt': |
| 2402 |
|
case 'u': |
| 2403 |
|
$this->afe->reconstruct( $this->stack ); |
| 2404 |
|
$this->afe->push( $this->stack->insertHTMLElement( $value, $attribs ), $attribs ); |
| 2405 |
|
return true; |
| 2406 |
|
|
| 2407 |
|
case 'nobr': |
| 2408 |
|
$this->afe->reconstruct( $this->stack ); |
|
@@ 2441-2446 (lines=6) @@
|
| 2438 |
|
case 'embed': |
| 2439 |
|
case 'img': |
| 2440 |
|
case 'keygen': |
| 2441 |
|
case 'wbr': |
| 2442 |
|
$this->afe->reconstruct( $this->stack ); |
| 2443 |
|
$this->stack->insertHTMLElement( $value, $attribs ); |
| 2444 |
|
$this->stack->pop(); |
| 2445 |
|
# OMITTED: frameset_ok |
| 2446 |
|
return true; |
| 2447 |
|
|
| 2448 |
|
case 'input': |
| 2449 |
|
$this->afe->reconstruct( $this->stack ); |
|
@@ 2448-2454 (lines=7) @@
|
| 2445 |
|
# OMITTED: frameset_ok |
| 2446 |
|
return true; |
| 2447 |
|
|
| 2448 |
|
case 'input': |
| 2449 |
|
$this->afe->reconstruct( $this->stack ); |
| 2450 |
|
$this->stack->insertHTMLElement( $value, $attribs ); |
| 2451 |
|
$this->stack->pop(); |
| 2452 |
|
# OMITTED: frameset_ok |
| 2453 |
|
# (hence we don't need to examine the tag's "type" attribute) |
| 2454 |
|
return true; |
| 2455 |
|
|
| 2456 |
|
case 'menuitem': |
| 2457 |
|
case 'param': |