All Downloads are FREE. Search and download functionalities are using the official Maven repository.

w3c.css.css.StyleSheetOrigin Maven / Gradle / Ivy

//
// $Id$
// From Philippe Le Hegaret ([email protected])
//
// (c) COPYRIGHT MIT and INRIA, 1997.
// Please first read the full copyright statement in file COPYRIGHT.html

package org.w3c.css.css;

/**
 * @author Philippe Le Hegaret
 * @version $Revision$
 */
public interface StyleSheetOrigin {

    /**
     * This property comes from the UA's default values.
     */
    public static final int BROWSER = 1;

    /**
     * This property comes from the reader's style sheet.
     */
    public static final int READER = 2;

    /**
     * This property comes from the author's style sheet.
     */
    public static final int AUTHOR = 3;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy