Examples of MismatchedAttributeValidatorsError


Examples of com.google.gxp.compiler.validate.MismatchedAttributeValidatorsError

        "    exclude='abbr,axis,bgcolor,char,charoff,colspan,",
        "             headers,height,nowrap,rowspan,scope,valign,width' />",
        "<call:callee gxp:bundles='bundle' />");

    compileFiles(callee, caller);
    assertAlert(new MismatchedAttributeValidatorsError(pos(5,1),
                                                       "<call:callee>",
                                                       "align", "bundle"));
    assertNoUnexpectedAlerts();
  }
View Full Code Here

Examples of com.google.gxp.compiler.validate.MismatchedAttributeValidatorsError

    // TD align has a different pattern from DIV align
    compile("<gxp:param name='bundle' gxp:type='bundle' from-element='td'",
            "   exclude='abbr,axis,bgcolor,char,charoff,colspan,",
            "            headers,height,nowrap,rowspan,scope,valign,width' />",
            "<div gxp:bundles='bundle'/>");
    assertAlert(new MismatchedAttributeValidatorsError(pos(5,1), "<div>", "align", "bundle"));
    assertNoUnexpectedAlerts();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.