Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 


Quelle  svg.mako.rs   Sprache: unbekannt

 
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */

<%namespace name="helpers" file="/helpers.mako.rs" />

${helpers.predefined_type(
    "vector-effect",
    "VectorEffect",
    "computed::VectorEffect::none()",
    engines="gecko",
    animation_type="discrete",
    spec="https://svgwg.org/svg2-draft/coords.html#VectorEffects",
    affects="layout",
)}

// Section 14 - Gradients and Patterns

${helpers.predefined_type(
    "stop-color",
    "Color",
    "computed::Color::BLACK",
    engines="gecko",
    spec="https://svgwg.org/svg2-draft/pservers.html#StopColorProperties",
    affects="paint",
)}

${helpers.predefined_type(
    "stop-opacity",
    "Opacity",
    "1.0",
    engines="gecko",
    spec="https://svgwg.org/svg2-draft/pservers.html#StopOpacityProperty",
    affects="paint",
)}

// Filter Effects Module

${helpers.predefined_type(
    "flood-color",
    "Color",
    "computed::Color::BLACK",
    engines="gecko",
    spec="https://drafts.fxtf.org/filter-effects-1/#FloodColorProperty",
    affects="paint",
)}

${helpers.predefined_type(
    "flood-opacity",
    "Opacity",
    "1.0",
    engines="gecko",
    spec="https://drafts.fxtf.org/filter-effects-1/#FloodOpacityProperty",
    affects="paint",
)}

${helpers.predefined_type(
    "lighting-color",
    "Color",
    "computed::Color::WHITE",
    engines="gecko",
    spec="https://drafts.fxtf.org/filter-effects-1#LightingColorProperty",
    affects="paint",
)}

// CSS Masking Module Level 1
// https://drafts.fxtf.org/css-masking-1
${helpers.single_keyword(
    "mask-type",
    "luminance alpha",
    engines="gecko",
    gecko_enum_prefix="StyleMaskType",
    animation_type="discrete",
    spec="https://drafts.fxtf.org/css-masking-1/#propdef-mask-type",
    affects="paint",
)}

${helpers.predefined_type(
    "clip-path",
    "basic_shape::ClipPath",
    "generics::basic_shape::ClipPath::None",
    engines="gecko servo",
    extra_prefixes="webkit",
    spec="https://drafts.fxtf.org/css-masking-1/#propdef-clip-path",
    affects="paint",
)}

${helpers.single_keyword(
    "mask-mode",
    "match-source alpha luminance",
    engines="gecko",
    gecko_enum_prefix="StyleMaskMode",
    vector=True,
    animation_type="discrete",
    spec="https://drafts.fxtf.org/css-masking-1/#propdef-mask-mode",
    affects="paint",
)}

${helpers.predefined_type(
    "mask-repeat",
    "BackgroundRepeat",
    "computed::BackgroundRepeat::repeat()",
    engines="gecko",
    initial_specified_value="specified::BackgroundRepeat::repeat()",
    extra_prefixes="webkit",
    animation_type="discrete",
    spec="https://drafts.fxtf.org/css-masking-1/#propdef-mask-repeat",
    vector=True,
    affects="paint",
)}

% for (axis, direction) in [("x", "Horizontal"), ("y", "Vertical")]:
    ${helpers.predefined_type(
        "mask-position-" + axis,
        "position::" + direction + "Position",
        "computed::LengthPercentage::zero_percent()",
        engines="gecko",
        extra_prefixes="webkit",
        initial_specified_value="specified::PositionComponent::Center",
        spec="https://drafts.fxtf.org/css-masking-1/#propdef-mask-position",
        vector_animation_type="repeatable_list",
        vector=True,
        affects="paint",
    )}
% endfor

${helpers.single_keyword(
    "mask-clip",
    "border-box content-box padding-box",
    engines="gecko",
    extra_gecko_values="fill-box stroke-box view-box no-clip",
    vector=True,
    extra_prefixes="webkit",
    gecko_enum_prefix="StyleGeometryBox",
    gecko_inexhaustive=True,
    animation_type="discrete",
    spec="https://drafts.fxtf.org/css-masking-1/#propdef-mask-clip",
    affects="paint",
)}

${helpers.single_keyword(
    "mask-origin",
    "border-box content-box padding-box",
    engines="gecko",
    extra_gecko_values="fill-box stroke-box view-box",
    vector=True,
    extra_prefixes="webkit",
    gecko_enum_prefix="StyleGeometryBox",
    gecko_inexhaustive=True,
    animation_type="discrete",
    spec="https://drafts.fxtf.org/css-masking-1/#propdef-mask-origin",
    affects="paint",
)}

${helpers.predefined_type(
    "mask-size",
    "background::BackgroundSize",
    "computed::BackgroundSize::auto()",
    engines="gecko",
    initial_specified_value="specified::BackgroundSize::auto()",
    extra_prefixes="webkit",
    spec="https://drafts.fxtf.org/css-masking-1/#propdef-mask-size",
    vector=True,
    vector_animation_type="repeatable_list",
    affects="paint",
)}

${helpers.single_keyword(
    "mask-composite",
    "add subtract intersect exclude",
    engines="gecko",
    gecko_enum_prefix="StyleMaskComposite",
    vector=True,
    extra_prefixes="webkit",
    animation_type="discrete",
    spec="https://drafts.fxtf.org/css-masking-1/#propdef-mask-composite",
    affects="paint",
)}

${helpers.predefined_type(
    "mask-image",
    "Image",
    engines="gecko",
    initial_value="computed::Image::None",
    initial_specified_value="specified::Image::None",
    parse_method="parse_with_cors_anonymous",
    spec="https://drafts.fxtf.org/css-masking-1/#propdef-mask-image",
    vector=True,
    extra_prefixes="webkit",
    animation_type="discrete",
    affects="paint",
)}

${helpers.predefined_type(
    "x",
    "LengthPercentage",
    "computed::LengthPercentage::zero()",
    engines="gecko",
    spec="https://svgwg.org/svg2-draft/geometry.html#X",
    affects="layout",
)}

${helpers.predefined_type(
    "y",
    "LengthPercentage",
    "computed::LengthPercentage::zero()",
    engines="gecko",
    spec="https://svgwg.org/svg2-draft/geometry.html#Y",
    affects="layout",
)}

${helpers.predefined_type(
    "cx",
    "LengthPercentage",
    "computed::LengthPercentage::zero()",
    engines="gecko",
    spec="https://svgwg.org/svg2-draft/geometry.html#CX",
    affects="layout",
)}

${helpers.predefined_type(
    "cy",
    "LengthPercentage",
    "computed::LengthPercentage::zero()",
    engines="gecko",
    spec="https://svgwg.org/svg2-draft/geometry.html#CY",
    affects="layout",
)}

${helpers.predefined_type(
    "rx",
    "NonNegativeLengthPercentageOrAuto",
    "computed::NonNegativeLengthPercentageOrAuto::auto()",
    engines="gecko",
    spec="https://svgwg.org/svg2-draft/geometry.html#RX",
    affects="layout",
)}

${helpers.predefined_type(
    "ry",
    "NonNegativeLengthPercentageOrAuto",
    "computed::NonNegativeLengthPercentageOrAuto::auto()",
    engines="gecko",
    spec="https://svgwg.org/svg2-draft/geometry.html#RY",
    affects="layout",
)}

${helpers.predefined_type(
    "r",
    "NonNegativeLengthPercentage",
    "computed::NonNegativeLengthPercentage::zero()",
    engines="gecko",
    spec="https://svgwg.org/svg2-draft/geometry.html#R",
    affects="layout",
)}

${helpers.predefined_type(
    "d",
    "DProperty",
    "specified::DProperty::none()",
    engines="gecko",
    spec="https://svgwg.org/svg2-draft/paths.html#TheDProperty",
    affects="layout",
)}

[ Dauer der Verarbeitung: 0.24 Sekunden  (vorverarbeitet)  ]

                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Produkte
     Quellcodebibliothek

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik

Monitoring

Montastic status badge