- From: <bugzilla@jessica.w3.org>
- Date: Wed, 09 Apr 2014 09:57:10 +0000
- To: public-css-bugzilla@w3.org
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