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 25289 - IDL in Filter effects spec is missing indentation
Summary: IDL in Filter effects spec is missing indentation
Status: RESOLVED FIXED
Alias: None
Product: CSS
Classification: Unclassified
Component: Filter Effects (show other bugs)
Version: unspecified
Hardware: All All
: P2 trivial
Target Milestone: ---
Assignee: Dean Jackson
QA Contact: public-css-bugzilla
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-04-08 05:57 UTC by Nils Barth
Modified: 2014-11-03 21:20 UTC (History)
4 users (show)

See Also:


Attachments

Description Nils Barth 2014-04-08 05:57:07 UTC
The IDL fragments in the filter effects spec:
http://www.w3.org/TR/filter-effects/
...are missing indentation: interface members are not indented, but should have 2 spaces of indentation, for consistency.

I.e., it's written as:
interface Foo {
attribute SVGType a;
attribute SVGType b;
};
...instead of:
interface Foo {
  attribute SVGType a;
  attribute SVGType b;
};
...instead of:

In the Web IDL spec and SVG 2 spec, these are given with 2 spaces of indentation.
This is a minor point (style-only), but it's pretty glaring.

Refs:
http://heycam.github.io/webidl/
http://www.w3.org/TR/SVG2/
Comment 1 Dirk Schulze 2014-11-03 21:20:17 UTC
Fixed today.