Complex classes like TemplateInspector often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use TemplateInspector, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 32 | class TemplateInspector |
||
| 33 | { |
||
| 34 | /** |
||
| 35 | * @var string[] allowChild bitfield for each branch |
||
| 36 | */ |
||
| 37 | protected $allowChildBitfields = []; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @var bool Whether elements are allowed as children |
||
| 41 | */ |
||
| 42 | protected $allowsChildElements = true; |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @var bool Whether text nodes are allowed as children |
||
| 46 | */ |
||
| 47 | protected $allowsText = true; |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @var string OR-ed bitfield representing all of the categories used by this template |
||
| 51 | */ |
||
| 52 | protected $contentBitfield = "\0"; |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @var string denyDescendant bitfield |
||
| 56 | */ |
||
| 57 | protected $denyDescendantBitfield = "\0"; |
||
| 58 | |||
| 59 | /** |
||
| 60 | * @var DOMDocument Document containing the template |
||
| 61 | */ |
||
| 62 | protected $dom; |
||
| 63 | |||
| 64 | /** |
||
| 65 | * @var bool Whether this template contains any HTML elements |
||
| 66 | */ |
||
| 67 | protected $hasElements = false; |
||
| 68 | |||
| 69 | /** |
||
| 70 | * @var bool Whether this template renders non-whitespace text nodes at its root |
||
| 71 | */ |
||
| 72 | protected $hasRootText = false; |
||
| 73 | |||
| 74 | /** |
||
| 75 | * @var bool Whether this template should be considered a block-level element |
||
| 76 | */ |
||
| 77 | protected $isBlock = false; |
||
| 78 | |||
| 79 | /** |
||
| 80 | * @var bool Whether the template uses the "empty" content model |
||
| 81 | */ |
||
| 82 | protected $isEmpty = true; |
||
| 83 | |||
| 84 | /** |
||
| 85 | * @var bool Whether this template adds to the list of active formatting elements |
||
| 86 | */ |
||
| 87 | protected $isFormattingElement = false; |
||
| 88 | |||
| 89 | /** |
||
| 90 | * @var bool Whether this template lets content through via an xsl:apply-templates element |
||
| 91 | */ |
||
| 92 | protected $isPassthrough = false; |
||
| 93 | |||
| 94 | /** |
||
| 95 | * @var bool Whether all branches use the transparent content model |
||
| 96 | */ |
||
| 97 | protected $isTransparent = false; |
||
| 98 | |||
| 99 | /** |
||
| 100 | * @var bool Whether all branches have an ancestor that is a void element |
||
| 101 | */ |
||
| 102 | protected $isVoid = true; |
||
| 103 | |||
| 104 | /** |
||
| 105 | * @var array Names of every last HTML element that precedes an <xsl:apply-templates/> node |
||
| 106 | */ |
||
| 107 | protected $leafNodes = []; |
||
| 108 | |||
| 109 | /** |
||
| 110 | * @var bool Whether any branch has an element that preserves new lines by default (e.g. <pre>) |
||
| 111 | */ |
||
| 112 | protected $preservesNewLines = false; |
||
| 113 | |||
| 114 | /** |
||
| 115 | * @var array Bitfield of the first HTML element of every branch |
||
| 116 | */ |
||
| 117 | protected $rootBitfields = []; |
||
| 118 | |||
| 119 | /** |
||
| 120 | * @var array Names of every HTML element that have no HTML parent |
||
| 121 | */ |
||
| 122 | protected $rootNodes = []; |
||
| 123 | |||
| 124 | /** |
||
| 125 | * @var DOMXPath XPath engine associated with $this->dom |
||
| 126 | */ |
||
| 127 | protected $xpath; |
||
| 128 | |||
| 129 | /** |
||
| 130 | * Constructor |
||
| 131 | * |
||
| 132 | * @param string $template Template content |
||
| 133 | */ |
||
| 134 | public function __construct($template) |
||
| 143 | |||
| 144 | /** |
||
| 145 | * Return whether this template allows a given child |
||
| 146 | * |
||
| 147 | * @param TemplateInspector $child |
||
| 148 | * @return bool |
||
| 149 | */ |
||
| 150 | public function allowsChild(TemplateInspector $child) |
||
| 176 | |||
| 177 | /** |
||
| 178 | * Return whether this template allows a given descendant |
||
| 179 | * |
||
| 180 | * @param TemplateInspector $descendant |
||
| 181 | * @return bool |
||
| 182 | */ |
||
| 183 | public function allowsDescendant(TemplateInspector $descendant) |
||
| 199 | |||
| 200 | /** |
||
| 201 | * Return whether this template allows elements as children |
||
| 202 | * |
||
| 203 | * @return bool |
||
| 204 | */ |
||
| 205 | public function allowsChildElements() |
||
| 209 | |||
| 210 | /** |
||
| 211 | * Return whether this template allows text nodes as children |
||
| 212 | * |
||
| 213 | * @return bool |
||
| 214 | */ |
||
| 215 | public function allowsText() |
||
| 219 | |||
| 220 | /** |
||
| 221 | * Return whether this template automatically closes given parent template |
||
| 222 | * |
||
| 223 | * @param TemplateInspector $parent |
||
| 224 | * @return bool |
||
| 225 | */ |
||
| 226 | public function closesParent(TemplateInspector $parent) |
||
| 248 | |||
| 249 | /** |
||
| 250 | * Evaluate an XPath expression |
||
| 251 | * |
||
| 252 | * @param string $expr XPath expression |
||
| 253 | * @param DOMElement $node Context node |
||
| 254 | * @return mixed |
||
| 255 | */ |
||
| 256 | public function evaluate($expr, DOMElement $node = null) |
||
| 257 | { |
||
| 258 | return $this->xpath->evaluate($expr, $node); |
||
| 259 | } |
||
| 260 | |||
| 261 | /** |
||
| 262 | * Return whether this template should be considered a block-level element |
||
| 263 | * |
||
| 264 | * @return bool |
||
| 265 | */ |
||
| 266 | public function isBlock() |
||
| 270 | |||
| 271 | /** |
||
| 272 | * Return whether this template adds to the list of active formatting elements |
||
| 273 | * |
||
| 274 | * @return bool |
||
| 275 | */ |
||
| 276 | public function isFormattingElement() |
||
| 280 | |||
| 281 | /** |
||
| 282 | * Return whether this template uses the "empty" content model |
||
| 283 | * |
||
| 284 | * @return bool |
||
| 285 | */ |
||
| 286 | public function isEmpty() |
||
| 290 | |||
| 291 | /** |
||
| 292 | * Return whether this template lets content through via an xsl:apply-templates element |
||
| 293 | * |
||
| 294 | * @return bool |
||
| 295 | */ |
||
| 296 | public function isPassthrough() |
||
| 300 | |||
| 301 | /** |
||
| 302 | * Return whether this template uses the "transparent" content model |
||
| 303 | * |
||
| 304 | * @return bool |
||
| 305 | */ |
||
| 306 | public function isTransparent() |
||
| 310 | |||
| 311 | /** |
||
| 312 | * Return whether all branches have an ancestor that is a void element |
||
| 313 | * |
||
| 314 | * @return bool |
||
| 315 | */ |
||
| 316 | public function isVoid() |
||
| 320 | |||
| 321 | /** |
||
| 322 | * Return whether this template preserves the whitespace in its descendants |
||
| 323 | * |
||
| 324 | * @return bool |
||
| 325 | */ |
||
| 326 | public function preservesNewLines() |
||
| 330 | |||
| 331 | /** |
||
| 332 | * Analyses the content of the whole template and set $this->contentBitfield accordingly |
||
| 333 | */ |
||
| 334 | protected function analyseContent() |
||
| 348 | |||
| 349 | /** |
||
| 350 | * Records the HTML elements (and their bitfield) rendered at the root of the template |
||
| 351 | */ |
||
| 352 | protected function analyseRootNodes() |
||
| 399 | |||
| 400 | /** |
||
| 401 | * Analyses each branch that leads to an <xsl:apply-templates/> tag |
||
| 402 | */ |
||
| 403 | protected function analyseBranches() |
||
| 599 | |||
| 600 | /** |
||
| 601 | * Test whether given element is a block-level element |
||
| 602 | * |
||
| 603 | * @param string $elName Element name |
||
| 604 | * @param DOMElement $node Context node |
||
| 605 | * @return bool |
||
| 606 | */ |
||
| 607 | protected function elementIsBlock($elName, DOMElement $node) |
||
| 621 | |||
| 622 | /** |
||
| 623 | * Retrieve and return the inline style assigned to given element |
||
| 624 | * |
||
| 625 | * @param DOMElement $node Context node |
||
| 626 | * @return string |
||
| 627 | */ |
||
| 628 | protected function getStyle(DOMElement $node) |
||
| 643 | |||
| 644 | /** |
||
| 645 | * Get all XSL elements of given name |
||
| 646 | * |
||
| 647 | * @param string $elName XSL element's name, e.g. "apply-templates" |
||
| 648 | * @return \DOMNodeList |
||
| 649 | */ |
||
| 650 | protected function getXSLElements($elName) |
||
| 654 | |||
| 655 | /** |
||
| 656 | * Test whether given node is a span element used for formatting |
||
| 657 | * |
||
| 658 | * Will return TRUE if the node is a span element with a class attribute and/or a style attribute |
||
| 659 | * and no other attributes |
||
| 660 | * |
||
| 661 | * @param DOMElement $node |
||
| 662 | * @return boolean |
||
| 663 | */ |
||
| 664 | protected function isFormattingSpan(DOMElement $node) |
||
| 686 | |||
| 687 | /** |
||
| 688 | * "What is this?" you might ask. This is basically a compressed version of the HTML5 content |
||
| 689 | * models and rules, with some liberties taken. |
||
| 690 | * |
||
| 691 | * For each element, up to three bitfields are defined: "c", "ac" and "dd". Bitfields are stored |
||
| 692 | * as raw bytes, formatted using the octal notation to keep the sources ASCII. |
||
| 693 | * |
||
| 694 | * "c" represents the categories the element belongs to. The categories are comprised of HTML5 |
||
| 695 | * content models (such as "phrasing content" or "interactive content") plus a few special |
||
| 696 | * categories created to cover the parts of the specs that refer to "a group of X and Y |
||
| 697 | * elements" rather than a specific content model. |
||
| 698 | * |
||
| 699 | * "ac" represents the categories that are allowed as children of given element. |
||
| 700 | * |
||
| 701 | * "dd" represents the categories that must not appear as a descendant of given element. |
||
| 702 | * |
||
| 703 | * Sometimes, HTML5 specifies some restrictions on when an element can accept certain children, |
||
| 704 | * or what categories the element belongs to. For example, an <img> element is only part of the |
||
| 705 | * "interactive content" category if it has a "usemap" attribute. Those restrictions are |
||
| 706 | * expressed as an XPath expression and stored using the concatenation of the key of the bitfield |
||
| 707 | * plus the bit number of the category. For instance, if "interactive content" got assigned to |
||
| 708 | * bit 2, the definition of the <img> element will contain a key "c2" with value "@usemap". |
||
| 709 | * |
||
| 710 | * Additionally, other flags are set: |
||
| 711 | * |
||
| 712 | * "t" indicates that the element uses the "transparent" content model. |
||
| 713 | * "e" indicates that the element uses the "empty" content model. |
||
| 714 | * "v" indicates that the element is a void element. |
||
| 715 | * "nt" indicates that the element does not accept text nodes. (no text) |
||
| 716 | * "to" indicates that the element should only contain text. (text-only) |
||
| 717 | * "fe" indicates that the element is a formatting element. It will automatically be reopened |
||
| 718 | * when closed by an end tag of a different name. |
||
| 719 | * "b" indicates that the element is not phrasing content, which makes it likely to act like |
||
| 720 | * a block element. |
||
| 721 | * |
||
| 722 | * Finally, HTML5 defines "optional end tag" rules, where one element automatically closes its |
||
| 723 | * predecessor. Those are used to generate closeParent rules and are stored in the "cp" key. |
||
| 724 | * |
||
| 725 | * @var array |
||
| 726 | * @see /scripts/patchTemplateInspector.php |
||
| 727 | */ |
||
| 728 | protected static $htmlElements = [ |
||
| 729 | 'a'=>['c'=>"\17\0\0\0\0\1",'c3'=>'@href','ac'=>"\0",'dd'=>"\10\0\0\0\0\1",'t'=>1,'fe'=>1], |
||
| 730 | 'abbr'=>['c'=>"\7",'ac'=>"\4"], |
||
| 731 | 'address'=>['c'=>"\3\40",'ac'=>"\1",'dd'=>"\0\45",'b'=>1,'cp'=>['p']], |
||
| 732 | 'article'=>['c'=>"\3\4",'ac'=>"\1",'b'=>1,'cp'=>['p']], |
||
| 733 | 'aside'=>['c'=>"\3\4",'ac'=>"\1",'dd'=>"\0\0\0\0\10",'b'=>1,'cp'=>['p']], |
||
| 734 | 'audio'=>['c'=>"\57",'c3'=>'@controls','c1'=>'@controls','ac'=>"\0\0\0\104",'ac26'=>'not(@src)','dd'=>"\0\0\0\0\0\2",'dd41'=>'@src','t'=>1], |
||
| 735 | 'b'=>['c'=>"\7",'ac'=>"\4",'fe'=>1], |
||
| 736 | 'base'=>['c'=>"\20",'nt'=>1,'e'=>1,'v'=>1,'b'=>1], |
||
| 737 | 'bdi'=>['c'=>"\7",'ac'=>"\4"], |
||
| 738 | 'bdo'=>['c'=>"\7",'ac'=>"\4"], |
||
| 739 | 'blockquote'=>['c'=>"\203",'ac'=>"\1",'b'=>1,'cp'=>['p']], |
||
| 740 | 'body'=>['c'=>"\200\0\4",'ac'=>"\1",'b'=>1], |
||
| 741 | 'br'=>['c'=>"\5",'nt'=>1,'e'=>1,'v'=>1], |
||
| 742 | 'button'=>['c'=>"\117",'ac'=>"\4",'dd'=>"\10"], |
||
| 743 | 'canvas'=>['c'=>"\47",'ac'=>"\0",'t'=>1], |
||
| 744 | 'caption'=>['c'=>"\0\2",'ac'=>"\1",'dd'=>"\0\0\0\200",'b'=>1], |
||
| 745 | 'cite'=>['c'=>"\7",'ac'=>"\4"], |
||
| 746 | 'code'=>['c'=>"\7",'ac'=>"\4",'fe'=>1], |
||
| 747 | 'col'=>['c'=>"\0\0\20",'nt'=>1,'e'=>1,'v'=>1,'b'=>1], |
||
| 748 | 'colgroup'=>['c'=>"\0\2",'ac'=>"\0\0\20",'ac20'=>'not(@span)','nt'=>1,'e'=>1,'e0'=>'@span','b'=>1], |
||
| 749 | 'data'=>['c'=>"\7",'ac'=>"\4"], |
||
| 750 | 'datalist'=>['c'=>"\5",'ac'=>"\4\200\0\10"], |
||
| 751 | 'dd'=>['c'=>"\0\0\200",'ac'=>"\1",'b'=>1,'cp'=>['dd','dt']], |
||
| 752 | 'del'=>['c'=>"\5",'ac'=>"\0",'t'=>1], |
||
| 753 | 'details'=>['c'=>"\213",'ac'=>"\1\0\0\2",'b'=>1,'cp'=>['p']], |
||
| 754 | 'dfn'=>['c'=>"\7\0\0\0\40",'ac'=>"\4",'dd'=>"\0\0\0\0\40"], |
||
| 755 | 'div'=>['c'=>"\3",'ac'=>"\1",'b'=>1,'cp'=>['p']], |
||
| 756 | 'dl'=>['c'=>"\3",'c1'=>'dt and dd','ac'=>"\0\200\200",'nt'=>1,'b'=>1,'cp'=>['p']], |
||
| 757 | 'dt'=>['c'=>"\0\0\200",'ac'=>"\1",'dd'=>"\0\5\0\40",'b'=>1,'cp'=>['dd','dt']], |
||
| 758 | 'em'=>['c'=>"\7",'ac'=>"\4",'fe'=>1], |
||
| 759 | 'embed'=>['c'=>"\57",'nt'=>1,'e'=>1,'v'=>1], |
||
| 760 | 'fieldset'=>['c'=>"\303",'ac'=>"\1\0\0\20",'b'=>1,'cp'=>['p']], |
||
| 761 | 'figcaption'=>['c'=>"\0\0\0\0\0\4",'ac'=>"\1",'b'=>1,'cp'=>['p']], |
||
| 762 | 'figure'=>['c'=>"\203",'ac'=>"\1\0\0\0\0\4",'b'=>1,'cp'=>['p']], |
||
| 763 | 'footer'=>['c'=>"\3\40",'ac'=>"\1",'dd'=>"\0\0\0\0\10",'b'=>1,'cp'=>['p']], |
||
| 764 | 'form'=>['c'=>"\3\0\0\0\20",'ac'=>"\1",'dd'=>"\0\0\0\0\20",'b'=>1,'cp'=>['p']], |
||
| 765 | 'h1'=>['c'=>"\3\1",'ac'=>"\4",'b'=>1,'cp'=>['p']], |
||
| 766 | 'h2'=>['c'=>"\3\1",'ac'=>"\4",'b'=>1,'cp'=>['p']], |
||
| 767 | 'h3'=>['c'=>"\3\1",'ac'=>"\4",'b'=>1,'cp'=>['p']], |
||
| 768 | 'h4'=>['c'=>"\3\1",'ac'=>"\4",'b'=>1,'cp'=>['p']], |
||
| 769 | 'h5'=>['c'=>"\3\1",'ac'=>"\4",'b'=>1,'cp'=>['p']], |
||
| 770 | 'h6'=>['c'=>"\3\1",'ac'=>"\4",'b'=>1,'cp'=>['p']], |
||
| 771 | 'head'=>['c'=>"\0\0\4",'ac'=>"\20",'nt'=>1,'b'=>1], |
||
| 772 | 'header'=>['c'=>"\3\40\0\40",'ac'=>"\1",'dd'=>"\0\0\0\0\10",'b'=>1,'cp'=>['p']], |
||
| 773 | 'hr'=>['c'=>"\1\100",'nt'=>1,'e'=>1,'v'=>1,'b'=>1,'cp'=>['p']], |
||
| 774 | 'html'=>['c'=>"\0",'ac'=>"\0\0\4",'nt'=>1,'b'=>1], |
||
| 775 | 'i'=>['c'=>"\7",'ac'=>"\4",'fe'=>1], |
||
| 776 | 'iframe'=>['c'=>"\57",'ac'=>"\4"], |
||
| 777 | 'img'=>['c'=>"\57\20\10",'c3'=>'@usemap','nt'=>1,'e'=>1,'v'=>1], |
||
| 778 | 'input'=>['c'=>"\17\20",'c3'=>'@type!="hidden"','c12'=>'@type!="hidden" or @type="hidden"','c1'=>'@type!="hidden"','nt'=>1,'e'=>1,'v'=>1], |
||
| 779 | 'ins'=>['c'=>"\7",'ac'=>"\0",'t'=>1], |
||
| 780 | 'kbd'=>['c'=>"\7",'ac'=>"\4"], |
||
| 781 | 'keygen'=>['c'=>"\117",'nt'=>1,'e'=>1,'v'=>1], |
||
| 782 | 'label'=>['c'=>"\17\20\0\0\4",'ac'=>"\4",'dd'=>"\0\0\1\0\4"], |
||
| 783 | 'legend'=>['c'=>"\0\0\0\20",'ac'=>"\4",'b'=>1], |
||
| 784 | 'li'=>['c'=>"\0\0\0\0\200",'ac'=>"\1",'b'=>1,'cp'=>['li']], |
||
| 785 | 'link'=>['c'=>"\20",'nt'=>1,'e'=>1,'v'=>1,'b'=>1], |
||
| 786 | 'main'=>['c'=>"\3\0\0\0\10",'ac'=>"\1",'b'=>1,'cp'=>['p']], |
||
| 787 | 'mark'=>['c'=>"\7",'ac'=>"\4"], |
||
| 788 | 'media element'=>['c'=>"\0\0\0\0\0\2",'nt'=>1,'b'=>1], |
||
| 789 | 'menu'=>['c'=>"\1\100",'ac'=>"\0\300",'nt'=>1,'b'=>1,'cp'=>['p']], |
||
| 790 | 'menuitem'=>['c'=>"\0\100",'nt'=>1,'e'=>1,'v'=>1,'b'=>1], |
||
| 791 | 'meta'=>['c'=>"\20",'nt'=>1,'e'=>1,'v'=>1,'b'=>1], |
||
| 792 | 'meter'=>['c'=>"\7\0\1\0\2",'ac'=>"\4",'dd'=>"\0\0\0\0\2"], |
||
| 793 | 'nav'=>['c'=>"\3\4",'ac'=>"\1",'dd'=>"\0\0\0\0\10",'b'=>1,'cp'=>['p']], |
||
| 794 | 'noscript'=>['c'=>"\25",'nt'=>1], |
||
| 795 | 'object'=>['c'=>"\147",'ac'=>"\0\0\0\0\1",'t'=>1], |
||
| 796 | 'ol'=>['c'=>"\3",'c1'=>'li','ac'=>"\0\200\0\0\200",'nt'=>1,'b'=>1,'cp'=>['p']], |
||
| 797 | 'optgroup'=>['c'=>"\0\0\2",'ac'=>"\0\200\0\10",'nt'=>1,'b'=>1,'cp'=>['optgroup','option']], |
||
| 798 | 'option'=>['c'=>"\0\0\2\10",'b'=>1,'cp'=>['option']], |
||
| 799 | 'output'=>['c'=>"\107",'ac'=>"\4"], |
||
| 800 | 'p'=>['c'=>"\3",'ac'=>"\4",'b'=>1,'cp'=>['p']], |
||
| 801 | 'param'=>['c'=>"\0\0\0\0\1",'nt'=>1,'e'=>1,'v'=>1,'b'=>1], |
||
| 802 | 'picture'=>['c'=>"\45",'ac'=>"\0\200\10",'nt'=>1], |
||
| 803 | 'pre'=>['c'=>"\3",'ac'=>"\4",'pre'=>1,'b'=>1,'cp'=>['p']], |
||
| 804 | 'progress'=>['c'=>"\7\0\1\1",'ac'=>"\4",'dd'=>"\0\0\0\1"], |
||
| 805 | 'q'=>['c'=>"\7",'ac'=>"\4"], |
||
| 806 | 'rb'=>['c'=>"\0\10",'ac'=>"\4",'b'=>1], |
||
| 807 | 'rp'=>['c'=>"\0\10\100",'ac'=>"\4",'b'=>1,'cp'=>['rp','rt']], |
||
| 808 | 'rt'=>['c'=>"\0\10\100",'ac'=>"\4",'b'=>1,'cp'=>['rp','rt']], |
||
| 809 | 'rtc'=>['c'=>"\0\10",'ac'=>"\4\0\100",'b'=>1], |
||
| 810 | 'ruby'=>['c'=>"\7",'ac'=>"\4\10"], |
||
| 811 | 's'=>['c'=>"\7",'ac'=>"\4",'fe'=>1], |
||
| 812 | 'samp'=>['c'=>"\7",'ac'=>"\4"], |
||
| 813 | 'script'=>['c'=>"\25\200",'to'=>1], |
||
| 814 | 'section'=>['c'=>"\3\4",'ac'=>"\1",'b'=>1,'cp'=>['p']], |
||
| 815 | 'select'=>['c'=>"\117",'ac'=>"\0\200\2",'nt'=>1], |
||
| 816 | 'small'=>['c'=>"\7",'ac'=>"\4",'fe'=>1], |
||
| 817 | 'source'=>['c'=>"\0\0\10\4",'nt'=>1,'e'=>1,'v'=>1,'b'=>1], |
||
| 818 | 'span'=>['c'=>"\7",'ac'=>"\4"], |
||
| 819 | 'strong'=>['c'=>"\7",'ac'=>"\4",'fe'=>1], |
||
| 820 | 'style'=>['c'=>"\20",'to'=>1,'b'=>1], |
||
| 821 | 'sub'=>['c'=>"\7",'ac'=>"\4"], |
||
| 822 | 'summary'=>['c'=>"\0\0\0\2",'ac'=>"\4\1",'b'=>1], |
||
| 823 | 'sup'=>['c'=>"\7",'ac'=>"\4"], |
||
| 824 | 'table'=>['c'=>"\3\0\0\200",'ac'=>"\0\202",'nt'=>1,'b'=>1,'cp'=>['p']], |
||
| 825 | 'tbody'=>['c'=>"\0\2",'ac'=>"\0\200\0\0\100",'nt'=>1,'b'=>1,'cp'=>['tbody','td','tfoot','th','thead','tr']], |
||
| 826 | 'td'=>['c'=>"\200\0\40",'ac'=>"\1",'b'=>1,'cp'=>['td','th']], |
||
| 827 | 'template'=>['c'=>"\25\200\20",'nt'=>1], |
||
| 828 | 'textarea'=>['c'=>"\117",'pre'=>1,'to'=>1], |
||
| 829 | 'tfoot'=>['c'=>"\0\2",'ac'=>"\0\200\0\0\100",'nt'=>1,'b'=>1,'cp'=>['tbody','td','th','thead','tr']], |
||
| 830 | 'th'=>['c'=>"\0\0\40",'ac'=>"\1",'dd'=>"\0\5\0\40",'b'=>1,'cp'=>['td','th']], |
||
| 831 | 'thead'=>['c'=>"\0\2",'ac'=>"\0\200\0\0\100",'nt'=>1,'b'=>1], |
||
| 832 | 'time'=>['c'=>"\7",'ac'=>"\4",'ac2'=>'@datetime'], |
||
| 833 | 'title'=>['c'=>"\20",'to'=>1,'b'=>1], |
||
| 834 | 'tr'=>['c'=>"\0\2\0\0\100",'ac'=>"\0\200\40",'nt'=>1,'b'=>1,'cp'=>['td','th','tr']], |
||
| 835 | 'track'=>['c'=>"\0\0\0\100",'nt'=>1,'e'=>1,'v'=>1,'b'=>1], |
||
| 836 | 'u'=>['c'=>"\7",'ac'=>"\4",'fe'=>1], |
||
| 837 | 'ul'=>['c'=>"\3",'c1'=>'li','ac'=>"\0\200\0\0\200",'nt'=>1,'b'=>1,'cp'=>['p']], |
||
| 838 | 'var'=>['c'=>"\7",'ac'=>"\4"], |
||
| 839 | 'video'=>['c'=>"\57",'c3'=>'@controls','ac'=>"\0\0\0\104",'ac26'=>'not(@src)','dd'=>"\0\0\0\0\0\2",'dd41'=>'@src','t'=>1], |
||
| 840 | 'wbr'=>['c'=>"\5",'nt'=>1,'e'=>1,'v'=>1] |
||
| 841 | ]; |
||
| 842 | |||
| 843 | /** |
||
| 844 | * Get the bitfield value for a given element name in a given context |
||
| 845 | * |
||
| 846 | * @param string $elName Name of the HTML element |
||
| 847 | * @param string $k Bitfield name: either 'c', 'ac' or 'dd' |
||
| 848 | * @param DOMElement $node Context node (not necessarily the same as $elName) |
||
| 849 | * @return string |
||
| 850 | */ |
||
| 851 | protected function getBitfield($elName, $k, DOMElement $node) |
||
| 893 | |||
| 894 | /** |
||
| 895 | * Test whether given element has given property in context |
||
| 896 | * |
||
| 897 | * @param string $elName Element name |
||
| 898 | * @param string $propName Property name, see self::$htmlElements |
||
| 899 | * @param DOMElement $node Context node |
||
| 900 | * @return bool |
||
| 901 | */ |
||
| 902 | protected function hasProperty($elName, $propName, DOMElement $node) |
||
| 916 | |||
| 917 | /** |
||
| 918 | * Test whether two bitfields have any bits in common |
||
| 919 | * |
||
| 920 | * @param string $bitfield1 |
||
| 921 | * @param string $bitfield2 |
||
| 922 | * @return bool |
||
| 923 | */ |
||
| 924 | protected static function match($bitfield1, $bitfield2) |
||
| 928 | } |