- From: <bugzilla@jessica.w3.org>
- Date: Tue, 08 Apr 2014 05:57:07 +0000
- To: public-css-bugzilla@w3.org
https://www.w3.org/Bugs/Public/show_bug.cgi?id=25289
Bug ID: 25289
Summary: IDL in Filter effects spec is missing indentation
Product: CSS
Version: unspecified
Hardware: All
OS: All
Status: NEW
Severity: trivial
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 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/
--
You are receiving this mail because:
You are the QA Contact for the bug.
Received on Tuesday, 8 April 2014 05:57:11 UTC