Package com.google.gwt.thirdparty.common.css.compiler.passes

Examples of com.google.gwt.thirdparty.common.css.compiler.passes.EliminateUnitsFromZeroNumericValues


    if (simplifyCss) {
      // Eliminate empty rules.
      new EliminateEmptyRulesetNodes(cssTree.getMutatingVisitController()).runPass();
      // Eliminating units for zero values.
      new EliminateUnitsFromZeroNumericValues(cssTree.getMutatingVisitController()).runPass();
      // Optimize color values.
      new ColorValueOptimizer(cssTree.getMutatingVisitController()).runPass();
      // Compress redundant top-right-bottom-left value lists.
      new AbbreviatePositionalValues(cssTree.getMutatingVisitController()).runPass();
    }
View Full Code Here

TOP

Related Classes of com.google.gwt.thirdparty.common.css.compiler.passes.EliminateUnitsFromZeroNumericValues

Copyright © 2018 www.massapicom. 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.