2002/css-validator/org/w3c/css/parser CssSelectors.java,1.29,1.30

Update of /sources/public/2002/css-validator/org/w3c/css/parser
In directory hutz:/tmp/cvs-serv29514/org/w3c/css/parser

Modified Files:
	CssSelectors.java 
Log Message:
cleanup

Index: CssSelectors.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/parser/CssSelectors.java,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- CssSelectors.java	5 Jan 2010 13:49:33 -0000	1.29
+++ CssSelectors.java	12 Aug 2011 21:19:01 -0000	1.30
@@ -7,8 +7,6 @@
 
 package org.w3c.css.parser;
 
-import java.util.ArrayList;
-
 import org.w3c.css.properties.css.CssProperty;
 import org.w3c.css.selectors.AdjacentSiblingSelector;
 import org.w3c.css.selectors.AttributeSelector;
@@ -28,18 +26,20 @@
 import org.w3c.css.util.Util;
 import org.w3c.css.util.Warnings;
 
+import java.util.ArrayList;
+
 /**
  * This class manages all contextual selector.
- *
- * <p>
+ * <p/>
+ * <p/>
  * Note:<BR>
  * Invoke a <code>set</code> function to change the selector clears all
  * properties !
  *
  * @version $Revision$
  */
-public final class CssSelectors extends SelectorsList 
-    implements CssSelectorsConstant {
+public final class CssSelectors extends SelectorsList
+        implements CssSelectorsConstant, Comparable<CssSelectors> {
 
     ApplContext ac;
 
@@ -61,7 +61,7 @@
     protected CssSelectors next;
 
     // true if the element is a block-level element
-    private  boolean isBlock;
+    private boolean isBlock;
 
     CssStyle properties;
 
@@ -83,69 +83,65 @@
      * Create a new CssSelectors with no previous selector.
      */
     public CssSelectors(ApplContext ac) {
-	super(ac);
-	style = ac.getCssSelectorsStyle();
-	try {
-	    properties = (CssStyle) style.newInstance();
-	} catch (Exception e) {
-	    e.printStackTrace();
-	}
-	this.ac = ac;
+        super(ac);
+        style = ac.getCssSelectorsStyle();
+        try {
+            properties = (CssStyle) style.newInstance();
+        } catch (Exception e) {
+            e.printStackTrace();
+        }
+        this.ac = ac;
     }
 
     private CssSelectors(Class style) {
-	super();
-	CssSelectors.style = style;
-	try {
-	    properties = (CssStyle) style.newInstance();
-	} catch (Exception e) {
-	    e.printStackTrace();
-	}
-	this.ac = null;
+        super();
+        CssSelectors.style = style;
+        try {
+            properties = (CssStyle) style.newInstance();
+        } catch (Exception e) {
+            e.printStackTrace();
+        }
+        this.ac = null;
     }
 
     /**
      * Create a new CssSelectors with a previous selector.
      *
-     * @param next
-     *            the next selector
+     * @param next the next selector
      */
     public CssSelectors(CssSelectors next) {
-	this(CssSelectors.style);
-	this.next = next;
+        this(CssSelectors.style);
+        this.next = next;
     }
 
     /**
      * Create a new CssSelectors with a previous selector.
      *
-     * @param next
-     *            the next selector
+     * @param next the next selector
      */
     public CssSelectors(ApplContext ac, CssSelectors next) {
-	this(ac);
-	this.next = next;
+        this(ac);
+        this.next = next;
     }
 
     /**
      * Set the style for all contexts. Don't forget to invoke this method if you
      * want a style !
      *
-     * @param style0
-     *            the style
+     * @param style0 the style
      */
     public void setStyle(Class style0) {
-	Util.verbose("Style is : " + style0);
-	style = style0;
+        Util.verbose("Style is : " + style0);
+        style = style0;
     }
 
     /**
      * Set the attribute atRule
      *
-     * @param atRule
-     *            the new value for the attribute
+     * @param atRule the new value for the attribute
      */
     public void setAtRule(AtRule atRule) {
-	this.atRule = atRule;
+        this.atRule = atRule;
     }
 
     /**
@@ -154,14 +150,14 @@
      * @return the value of the attribute
      */
     public final AtRule getAtRule() {
-	return atRule;
+        return atRule;
     }
 
     /**
      * Get the element.
      */
     public final String getElement() {
-	return element;
+        return element;
     }
 
     /**
@@ -169,190 +165,197 @@
      * only)
      */
     public final boolean isBlockLevelElement() {
-	return isBlock;
+        return isBlock;
     }
 
     public void addPseudoClass(String pseudo) throws InvalidParamException {
- 	if(pseudo == null) {
-	    return;
-	}
+        if (pseudo == null) {
+            return;
+        }
 
-	String profile = ac.getProfile();
-	if(profile == null || profile.equals("") || profile.equals("none")) {
-	    profile = ac.getCssVersion();
-	}   
-	// is it a pseudo-class?
-	String[] ps = PseudoFactory.getPseudoClass(profile);
-	if(ps != null) {
-	    for(int i = 0; i < ps.length; i++) {
-		if(pseudo.equals(ps[i])) {
-		    addPseudoClass(new PseudoClassSelector(pseudo));
-		    return;
-		}
-	    }
-	}
-	// it's not a pseudo-class, maybe one pseudo element exception
-	ps = PseudoFactory.getPseudoElementExceptions(profile);
-	if(ps != null) {
-	    for(int i = 0; i < ps.length; i++) {
-		if(pseudo.equals(ps[i])) {
-		    addPseudoClass(new PseudoClassSelector(pseudo));
-		    return;
-		}
-	    }
-	}	
+        String profile = ac.getProfile();
+        if (profile == null || profile.equals("") || profile.equals("none")) {
+            profile = ac.getCssVersion();
+        }
+        // is it a pseudo-class?
+        String[] ps = PseudoFactory.getPseudoClass(profile);
+        if (ps != null) {
+            for (int i = 0; i < ps.length; i++) {
+                if (pseudo.equals(ps[i])) {
+                    addPseudoClass(new PseudoClassSelector(pseudo));
+                    return;
+                }
+            }
+        }
+        // it's not a pseudo-class, maybe one pseudo element exception
+        ps = PseudoFactory.getPseudoElementExceptions(profile);
+        if (ps != null) {
+            for (int i = 0; i < ps.length; i++) {
+                if (pseudo.equals(ps[i])) {
+                    addPseudoClass(new PseudoClassSelector(pseudo));
+                    return;
+                }
+            }
+        }
         throw new InvalidParamException("pseudo", ":" + pseudo, ac);
     }
-    
+
     public void addPseudoElement(String pseudo) throws InvalidParamException {
- 	if(pseudo == null) {
-	    return;
-	}
+        if (pseudo == null) {
+            return;
+        }
 
-	String profile = ac.getProfile();
-	if(profile == null || profile.equals("") || profile.equals("none")) {
-	    profile = ac.getCssVersion();
-	}   
+        String profile = ac.getProfile();
+        if (profile == null || profile.equals("") || profile.equals("none")) {
+            profile = ac.getCssVersion();
+        }
+
+        // is it a pseudo-element?
+        String[] ps = PseudoFactory.getPseudoElement(profile);
+        if (ps != null) {
+            for (int i = 0; i < ps.length; i++) {
+                if (pseudo.equals(ps[i])) {
+                    addPseudoElement(new PseudoElementSelector(pseudo));
+                    return;
+                }
+            }
+        }
 
-	// is it a pseudo-element?
-	String[] ps = PseudoFactory.getPseudoElement(profile);
-	if(ps != null) {
-	    for(int i = 0; i < ps.length; i++) {
-		if(pseudo.equals(ps[i])) {
-		    addPseudoElement(new PseudoElementSelector(pseudo));
-		    return;
-		}
-	    }
-	}
-        
         // the ident isn't a valid pseudo-something
         throw new InvalidParamException("pseudo", "::" + pseudo, ac);
     }
 
     public void setPseudoFun(String pseudo, String param)
-    throws InvalidParamException {
-	String profile = ac.getProfile();
-	if(profile == null || profile.equals("") || profile.equals("none")) {
-	    profile = ac.getCssVersion();
-	}
-	String[] ps = PseudoFactory.getPseudoFunction(profile);
-	if(ps != null) {
-	    for(int i = 0; i < ps.length; i++) {
-		if(pseudo.equals(ps[i])) {
-		    addPseudoFunction(
-				  PseudoFactory.newPseudoFunction(pseudo, 
-								  param, 
-								  ac));
-		    return;
-		}
-	    }
-	    throw new InvalidParamException("pseudo", ":" + pseudo, ac);
-	}
+            throws InvalidParamException {
+        String profile = ac.getProfile();
+        if (profile == null || profile.equals("") || profile.equals("none")) {
+            profile = ac.getCssVersion();
+        }
+        String[] ps = PseudoFactory.getPseudoFunction(profile);
+        if (ps != null) {
+            for (int i = 0; i < ps.length; i++) {
+                if (pseudo.equals(ps[i])) {
+                    addPseudoFunction(
+                            PseudoFactory.newPseudoFunction(pseudo,
+                                    param,
+                                    ac));
+                    return;
+                }
+            }
+            throw new InvalidParamException("pseudo", ":" + pseudo, ac);
+        }
     }
 
     public void addType(TypeSelector type) throws InvalidParamException {
-	super.addType(type);
-	element = type.getName();
-	hashElement = element.hashCode();
+        super.addType(type);
+        element = type.getName();
+        hashElement = element.hashCode();
     }
 
     public void addDescendant(DescendantSelector descendant)
-    throws InvalidParamException {
-	super.addDescendant(descendant);
-	connector = DESCENDANT;
+            throws InvalidParamException {
+        super.addDescendant(descendant);
+        connector = DESCENDANT;
     }
 
     public void addChild(ChildSelector child) throws InvalidParamException {
-	super.addChild(child);
-	connector = CHILD;
+        super.addChild(child);
+        connector = CHILD;
     }
 
     public void addAdjacentSibling(AdjacentSiblingSelector adjacent)
-    throws InvalidParamException {
-	super.addAdjacentSibling(adjacent);
-	connector = ADJACENT_SIBLING;
+            throws InvalidParamException {
+        super.addAdjacentSibling(adjacent);
+        connector = ADJACENT_SIBLING;
     }
 
     public void addGeneralSibling(GeneralSiblingSelector sibling)
-    throws InvalidParamException {
-	super.addGeneralSibling(sibling);
-	connector = GENERAL_SIBLING;
+            throws InvalidParamException {
+        super.addGeneralSibling(sibling);
+        connector = GENERAL_SIBLING;
     }
 
 
     public void addAttribute(AttributeSelector attribute)
-    throws InvalidParamException {
-	int _s = size();
-	for(int i = 0; i < _s; i++) {
-	    Selector s = (Selector) getSelector(i);
-	    // add warnings if some selectors are incompatible
-	    // e.g. [lang=en][lang=fr]
-	    if(s instanceof AttributeSelector) {
-		((AttributeSelector) s).applyAttribute(ac, attribute);
-	    }
-	}
-	super.addAttribute(attribute);
+            throws InvalidParamException {
+        int _s = size();
+        for (int i = 0; i < _s; i++) {
+            Selector s = (Selector) getSelector(i);
+            // add warnings if some selectors are incompatible
+            // e.g. [lang=en][lang=fr]
+            if (s instanceof AttributeSelector) {
+                ((AttributeSelector) s).applyAttribute(ac, attribute);
+            }
+        }
+        super.addAttribute(attribute);
     }
 
     /**
      * Adds a property to this selector.
      *
-     * @param property
-     *            The property.
-     * @param warnings
-     *            For warning report.
+     * @param property The property.
+     * @param warnings For warning report.
      */
     public void addProperty(CssProperty property, Warnings warnings) {
-	Init = true;
-	if (properties != null) {
-	    properties.setProperty(ac, property, warnings);
-	} else {
-	    System.err.println("[ERROR] Invalid state in "
-		    + "org.w3c.css.parser.CssSelectors#addProperty");
-	    System.err.println("[ERROR] Please report BUG");
-	}
+        Init = true;
+        if (properties != null) {
+            properties.setProperty(ac, property, warnings);
+        } else {
+            System.err.println("[ERROR] Invalid state in "
+                    + "org.w3c.css.parser.CssSelectors#addProperty");
+            System.err.println("[ERROR] Please report BUG");
+        }
     }
 
     public CssStyle getStyle() {
-	return properties;
+        return properties;
     }
 
     /**
      * Returns a string representation of the object.
      */
     public String toString() {
-	// I'm in reverse order, so compute the next before the current
-	if (isToStringCached()) {
-	    return cachedRepresentation;
-	}
-	StringBuilder sbrep = new StringBuilder();
-	if (next != null) {
-	    sbrep.append(next.toString());
-	}
-	sbrep.append(super.toString());
-	cachedRepresentation = sbrep.toString();
-	return cachedRepresentation;
+        // I'm in reverse order, so compute the next before the current
+        if (isToStringCached()) {
+            return cachedRepresentation;
+        }
+        StringBuilder sbrep = new StringBuilder();
+        if (next != null) {
+            sbrep.append(next.toString());
+        }
+        sbrep.append(super.toString());
+        cachedRepresentation = sbrep.toString();
+        return cachedRepresentation;
     }
+
     /**
      * return XML escaped string
      */
     public String getEscaped() {
-	return Messages.escapeString(toString());
+        return Messages.escapeString(toString());
     }
 
     public boolean isToStringCached() {
-	if (cachedRepresentation == null) {
-	    return false;
-	}
-	if (isFinal) {
-	    return true;
-	}
-	if (next != null) {
-	    return super.isToStringCached() && next.isToStringCached();
-	}
-	return super.isToStringCached();
+        if (cachedRepresentation == null) {
+            return false;
+        }
+        if (isFinal) {
+            return true;
+        }
+        if (next != null) {
+            return super.isToStringCached() && next.isToStringCached();
+        }
+        return super.isToStringCached();
     }
 
+    /**
+     * Comparison is done on the string representation
+     * @param selectors
+     * @return
+     */
+    public int compareTo(CssSelectors selectors) {
+        return toString().compareTo(selectors.toString());
+    }
     /*
       we are doing this in two steps, as it is possible to have some
        calls to toString() and do modifications, then at some point
@@ -361,21 +364,21 @@
        optimizations. Things could be better optimized if we were sure
        that no calls to toString were done before everything is frozen
     */
-      
+
     /*
-     * Mark as final, ie: no more modification to the structure.
-     */
+    * Mark as final, ie: no more modification to the structure.
+    */
     public void markAsFinal() {
-	// if something has been changed, reset to force recomputing
-	if (!isFinal) {
-	    if (!isToStringCached()) {
-		cachedRepresentation = null;
-		if (next != null) {
-		    next.markAsFinal();
-		}
-	    }
-	    isFinal = true;
-	}
+        // if something has been changed, reset to force recomputing
+        if (!isFinal) {
+            if (!isToStringCached()) {
+                cachedRepresentation = null;
+                if (next != null) {
+                    next.markAsFinal();
+                }
+            }
+            isFinal = true;
+        }
     }
 
     /**
@@ -399,222 +402,217 @@
     /**
      * Returns <code>true</code> if the selector is equals to an another.
      *
-     * @param selector
-     *            The selector to compare
+     * @param selector The selector to compare
      */
     public boolean equals(Object selector) {
-	if ((selector == null) || !(selector instanceof CssSelectors)) {
-	    return false;
-	}
-	CssSelectors s = (CssSelectors) selector;
+        if ((selector == null) || !(selector instanceof CssSelectors)) {
+            return false;
+        }
+        CssSelectors s = (CssSelectors) selector;
 
-	if ((atRule instanceof AtRulePage)
-		|| (atRule instanceof AtRuleFontFace)) {
-	    return atRule.equals(s.atRule);
-	}
-	if (hashCode() == s.hashCode()) {
-	    if (atRule == null) {
-		return (s.getAtRule() == null);
-	    } else {
-		return atRule.canApply(s.getAtRule());
-	    }
-	} else {
-	    return false;
-	}
+        if ((atRule instanceof AtRulePage)
+                || (atRule instanceof AtRuleFontFace)) {
+            return atRule.equals(s.atRule);
+        }
+        if (hashCode() == s.hashCode()) {
+            if (atRule == null) {
+                return (s.getAtRule() == null);
+            } else {
+                return atRule.canApply(s.getAtRule());
+            }
+        } else {
+            return false;
+        }
     }
 
     /**
      * Set the previous selector.
      *
-     * @param next
-     *            the previous selector.
+     * @param next the previous selector.
      */
     public void setNext(CssSelectors next) {
-	this.next = next;
-	Invalidate();
+        this.next = next;
+        Invalidate();
     }
 
     /**
      * Get the previous selector.
      */
     public CssSelectors getNext() {
-	return next;
+        return next;
     }
 
     /**
      * Returns <code>true</code> if there is no property in this document.
      */
     public boolean isEmpty() {
-	return !Init;
+        return !Init;
     }
 
     public void addAttribute(String attName, String value)
-    throws InvalidParamException {
-	if (ac.getProfile() != null && !"".equals(ac.getProfile())) {
-	    if (ac.getProfile().equals("mobile")) {
-		throw new InvalidParamException("notformobile", "attributes",
-			ac);
-	    }
-	} else {
-	    addAttribute(new AttributeExact(attName, value));
-	    Invalidate();
-	}
+            throws InvalidParamException {
+        if (ac.getProfile() != null && !"".equals(ac.getProfile())) {
+            if (ac.getProfile().equals("mobile")) {
+                throw new InvalidParamException("notformobile", "attributes",
+                        ac);
+            }
+        } else {
+            addAttribute(new AttributeExact(attName, value));
+            Invalidate();
+        }
     }
 
     void Invalidate() {
-	// invalidate all pre-computation in this selectors
-	setSpecificity(0);
-	//hashGeneral = 0;
+        // invalidate all pre-computation in this selectors
+        setSpecificity(0);
+        //hashGeneral = 0;
 
-	if (Init) {
-	    // yes I invalidate all properties too !
-	    try {
-		properties = (CssStyle) style.newInstance();
-	    } catch (Exception e) {
-		e.printStackTrace();
-	    }
-	}
+        if (Init) {
+            // yes I invalidate all properties too !
+            try {
+                properties = (CssStyle) style.newInstance();
+            } catch (Exception e) {
+                e.printStackTrace();
+            }
+        }
     }
 
     final boolean canApply(ArrayList<Selector> attrs, ArrayList<Selector> attrs2) {
-	if(attrs.size() > 0) {
-	    for(int i = 0; i < attrs.size(); i++) {
-		Selector selector = attrs.get(i);
+        if (attrs.size() > 0) {
+            for (int i = 0; i < attrs.size(); i++) {
+                Selector selector = attrs.get(i);
 
-		Selector other = null;
-		int j = 0;
-		for(; j < attrs2.size(); j++) {
-		    other = attrs2.get(j);
-		    if(!other.equals(selector)) {
-			other = null;
-		    }
-		    else {
-			break;
-		    }
-		}
-		if (other != null) {
-		    if (!selector.canApply(other)) {
-			return false;
-		    }
-		} else {
-		    return false;
-		}
-	    }
-	    return true;
-	}
-	return true;
+                Selector other = null;
+                int j = 0;
+                for (; j < attrs2.size(); j++) {
+                    other = attrs2.get(j);
+                    if (!other.equals(selector)) {
+                        other = null;
+                    } else {
+                        break;
+                    }
+                }
+                if (other != null) {
+                    if (!selector.canApply(other)) {
+                        return false;
+                    }
+                } else {
+                    return false;
+                }
+            }
+            return true;
+        }
+        return true;
 
     }
 
     /**
      * Returns <code>true</code> if the selector can matched this selector.
-     *
-     * <p>
+     * <p/>
+     * <p/>
      * Examples:<br>
      * <OL>
      * <LI><code>H1.canApply(HTML BODY H1)</code> returns <code>true</code>
      * <LI><code>H1.canApply(HTML BODY H1 EM)</code> returns
      * <code>false</code>
      * <LI><code>(H1 EM).canApply(HTML BODY H2 EM)</code> returns
-     *     <code>false</code>
+     * <code>false</code>
      * <LI><code>(HTML EM).canApply(HTML BODY H2 EM)</code> returns
-     *     <code>true</code>
+     * <code>true</code>
      * </OL>
-     *
-     * <p>
+     * <p/>
+     * <p/>
      * Note:<BR>
      * In principle, if you work with a HTML document, your selector should
      * start with HTML BODY. Because you are always in this context when you
      * parse the text in a HTML document.
      *
-     * @param selector
-     *            the selector to match
-     * @see            org.w3c.css.css.CssCascadingOrder#order
+     * @param selector the selector to match
+     * @see org.w3c.css.css.CssCascadingOrder#order
      */
     public boolean canApply(CssSelectors selector) {
-	if ((atRule instanceof AtRulePage)
-		|| (atRule instanceof AtRuleFontFace)) {
-	    return atRule.canApply(selector.atRule);
-	}
-	// current work - don't touch
-	Util.verbose(getSpecificity() + " canApply this " + this
-		+ " selector: " + selector);
-	Util.verbose("connector " + connector);
-	Util.verbose(getSelectors().toString());
-	Util.verbose(selector.getSelectors().toString());
+        if ((atRule instanceof AtRulePage)
+                || (atRule instanceof AtRuleFontFace)) {
+            return atRule.canApply(selector.atRule);
+        }
+        // current work - don't touch
+        Util.verbose(getSpecificity() + " canApply this " + this
+                + " selector: " + selector);
+        Util.verbose("connector " + connector);
+        Util.verbose(getSelectors().toString());
+        Util.verbose(selector.getSelectors().toString());
 
-	if ((hashElement != selector.hashElement) && hashElement != 0) {
-	    // here we are in this case :
-	    // H1 and HTML BODY H1 EM
-	    // don't do anything !
-	    // the cascading order algorithm resolves this case like this :
-	    //
-	    // if (for all contexts) !canApply(selector)
-	    //       go and see canApply(selector.getNext())
-	    //
-	    // for further informations,
-	    //                     see org.w3c.css.css.CssCascadingOrder#order
-	    Util.verbose("canApply RETURNS FALSE");
-	    return false;
-	} else {
-	    if (next == null || selector.next == null) {
-		boolean result = canApply(getSelectors(), selector.getSelectors());
-		Util.verbose("canApply RETURNS " + result);
-		return result;
-	    } else {
-		return next.canMatch(selector.next);
-	    }
-	}
+        if ((hashElement != selector.hashElement) && hashElement != 0) {
+            // here we are in this case :
+            // H1 and HTML BODY H1 EM
+            // don't do anything !
+            // the cascading order algorithm resolves this case like this :
+            //
+            // if (for all contexts) !canApply(selector)
+            //       go and see canApply(selector.getNext())
+            //
+            // for further informations,
+            //                     see org.w3c.css.css.CssCascadingOrder#order
+            Util.verbose("canApply RETURNS FALSE");
+            return false;
+        } else {
+            if (next == null || selector.next == null) {
+                boolean result = canApply(getSelectors(), selector.getSelectors());
+                Util.verbose("canApply RETURNS " + result);
+                return result;
+            } else {
+                return next.canMatch(selector.next);
+            }
+        }
     }
 
     /**
      * Returns true if the selector can matched another selector. called by
      * canApply
      *
-     * @param selector
-     *            The selector to compare
+     * @param selector The selector to compare
      */
     private boolean canMatch(CssSelectors selector) {
-	boolean result = canApply(getSelectors(), selector.getSelectors());
-	// current work
-	Util.verbose("canMatched this " + this + " selector: " + selector);
-	Util.verbose("connector " + connector);
-	Util.verbose(getSelectors().toString());
-	Util.verbose(selector.getSelectors().toString());
-	Util.verbose("canMatched for attributes :" + result);
+        boolean result = canApply(getSelectors(), selector.getSelectors());
+        // current work
+        Util.verbose("canMatched this " + this + " selector: " + selector);
+        Util.verbose("connector " + connector);
+        Util.verbose(getSelectors().toString());
+        Util.verbose(selector.getSelectors().toString());
+        Util.verbose("canMatched for attributes :" + result);
 
-	if ((hashElement != selector.hashElement) && hashElement != 0) {
-	    if ((connector == DESCENDANT) && (selector.next != null)) {
-		// here we are in this case :
-		// H1 and HTML BODY H1 EM
-		// H1 can't matched EM but EM have next
-		return canMatch(selector.next);
-	    } else {
-		// here we are in this case :
-		// H1 and HTML
-		// H1 can't matched HTML and HTML don't have next
-		Util.verbose("canMatched RETURN FALSE");
-		return false;
-	    }
-	}
+        if ((hashElement != selector.hashElement) && hashElement != 0) {
+            if ((connector == DESCENDANT) && (selector.next != null)) {
+                // here we are in this case :
+                // H1 and HTML BODY H1 EM
+                // H1 can't matched EM but EM have next
+                return canMatch(selector.next);
+            } else {
+                // here we are in this case :
+                // H1 and HTML
+                // H1 can't matched HTML and HTML don't have next
+                Util.verbose("canMatched RETURN FALSE");
+                return false;
+            }
+        }
 
-	if (next == null || selector.next == null) {
-	    // here we are in this case :
-	    // H1 and BODY HTML H1
-	    // or :
-	    // HTML BODY and BODY (this case won't appear in principle)
-	    Util.verbose("canMatched RETURN " + result);
-	    return canApply(getSelectors(), selector.getSelectors());
-	} else {
-	    // here we are in this case :
-	    // BODY H1 and HTML BODY H1
-	    return next.canMatch(selector.next);
-	}
+        if (next == null || selector.next == null) {
+            // here we are in this case :
+            // H1 and BODY HTML H1
+            // or :
+            // HTML BODY and BODY (this case won't appear in principle)
+            Util.verbose("canMatched RETURN " + result);
+            return canApply(getSelectors(), selector.getSelectors());
+        } else {
+            // here we are in this case :
+            // BODY H1 and HTML BODY H1
+            return next.canMatch(selector.next);
+        }
     }
-    
+
     public void findConflicts(ApplContext ac, Warnings warnings,
-			      CssSelectors[] allSelectors) {
-	CssStyle style = getStyle();
-	style.findConflicts(ac, warnings, this, allSelectors);
+                              CssSelectors[] allSelectors) {
+        CssStyle style = getStyle();
+        style.findConflicts(ac, warnings, this, allSelectors);
     }
 }

Received on Friday, 12 August 2011 21:19:05 UTC