This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 25296 - Remove obsolete "in" from IDL fragments
Summary: Remove obsolete "in" from IDL fragments
Status: RESOLVED FIXED
Alias: None
Product: CSS
Classification: Unclassified
Component: Filter Effects (show other bugs)
Version: unspecified
Hardware: All All
: P2 minor
Target Milestone: ---
Assignee: Dean Jackson
QA Contact: public-css-bugzilla
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-04-09 09:57 UTC by Nils Barth
Modified: 2014-11-03 21:27 UTC (History)
4 users (show)

See Also:


Attachments

Description Nils Barth 2014-04-09 09:57:10 UTC
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)
]]
Comment 1 Dirk Schulze 2014-11-03 21:27:14 UTC
Thank you very much for reporting. It is fixed now.