]> scripts.mit.edu Git - autoinstallsdev/mediawiki.git/blobdiff - vendor/wikimedia/remex-html/RemexHtml/TreeBuilder/AfterAfterBody.php
MediaWiki 1.30.2
[autoinstallsdev/mediawiki.git] / vendor / wikimedia / remex-html / RemexHtml / TreeBuilder / AfterAfterBody.php
diff --git a/vendor/wikimedia/remex-html/RemexHtml/TreeBuilder/AfterAfterBody.php b/vendor/wikimedia/remex-html/RemexHtml/TreeBuilder/AfterAfterBody.php
new file mode 100644 (file)
index 0000000..05fb6f7
--- /dev/null
@@ -0,0 +1,58 @@
+<?php
+
+namespace RemexHtml\TreeBuilder;
+use RemexHtml\Tokenizer\Attributes;
+
+/**
+ * The "after after body" insertion mode
+ */
+class AfterAfterBody extends InsertionMode {
+       public function characters( $text, $start, $length, $sourceStart, $sourceLength ) {
+               list( $part1, $part2 ) = $this->splitInitialMatch( true, "\t\n\f\r ",
+                       $text, $start, $length, $sourceStart, $sourceLength );
+               list( $start, $length, $sourceStart, $sourceLength ) = $part1;
+               if ( $length ) {
+                       $this->builder->insertCharacters( $text, $start, $length, $sourceStart, $sourceLength );
+               }
+
+               list( $start, $length, $sourceStart, $sourceLength ) = $part2;
+               if ( !$length ) {
+                       return;
+               }
+               $this->builder->error( "unexpected non-whitespace characters after after body",
+                       $sourceStart );
+               $this->dispatcher->switchMode( Dispatcher::IN_BODY )
+                       ->characters( $text, $start, $length, $sourceStart, $sourceLength );
+       }
+
+       public function startTag( $name, Attributes $attrs, $selfClose, $sourceStart, $sourceLength ) {
+               $builder = $this->builder;
+               $dispatcher = $this->dispatcher;
+
+               switch ( $name ) {
+               case 'html':
+                       $dispatcher->inBody->startTag(
+                               $name, $attrs, $selfClose, $sourceStart, $sourceLength );
+                       break;
+
+               default:
+                       $builder->error( "unexpected start tag after after body", $sourceStart );
+                       $dispatcher->switchMode( Dispatcher::IN_BODY )
+                               ->startTag( $name, $attrs, $selfClose, $sourceStart, $sourceLength );
+               }
+       }
+
+       public function endTag( $name, $sourceStart, $sourceLength ) {
+               $this->builder->error( "unexpected end tag after after body", $sourceStart );
+               $this->dispatcher->switchMode( Dispatcher::IN_BODY )
+                       ->endTag( $name, $sourceStart, $sourceLength );
+       }
+
+       public function endDocument( $pos ) {
+               $this->builder->stopParsing( $pos );
+       }
+
+       public function comment( $text, $sourceStart, $sourceLength ) {
+               $this->builder->comment( [ TreeBuilder::ROOT, null ], $text, $sourceStart, $sourceLength );
+       }
+}