[Bug 25296] New: Remove obsolete "in" from IDL fragments

https://www.w3.org/Bugs/Public/show_bug.cgi?id=25296

            Bug ID: 25296
           Summary: Remove obsolete "in" from IDL fragments
           Product: CSS
           Version: unspecified
          Hardware: All
                OS: All
            Status: NEW
          Severity: minor
          Priority: P2
         Component: Filter Effects
          Assignee: dino@apple.com
          Reporter: nbarth+w3bugzilla@google.com
        QA Contact: public-css-bugzilla@w3.org
                CC: cmarrin@apple.com, eoconnor@apple.com, smfr@me.com

The 'in' keyword has been removed from Web IDL for some years, but is still
present in the Filter effects spec in a few places:

http://www.w3.org/TR/filter-effects/#InterfaceSVGFEDropShadowElement
http://www.w3.org/TR/filter-effects/#InterfaceSVGFEGaussianBlurElement
http://www.w3.org/TR/filter-effects/#SVGFEDropShadowElement__setStdDeviation
http://www.w3.org/TR/filter-effects/#SVGFEGaussianBlurElement__setStdDeviation

...these read:
[[
void setStdDeviation(in float stdDeviationX, in float stdDeviationY);
void setStdDeviation(in float stdDeviationX, in float stdDeviationY)
]]

...but should read:
[[
void setStdDeviation(float stdDeviationX, float stdDeviationY);
void setStdDeviation(float stdDeviationX, float stdDeviationY)
]]

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Wednesday, 9 April 2014 09:57:12 UTC