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 27429 - CanvasRenderingContext2DSettings IDL misses semicolon.
Summary: CanvasRenderingContext2DSettings IDL misses semicolon.
Status: RESOLVED FIXED
Alias: None
Product: WHATWG
Classification: Unclassified
Component: HTML (show other bugs)
Version: unspecified
Hardware: Other other
: P3 normal
Target Milestone: Unsorted
Assignee: Ian 'Hixie' Hickson
QA Contact: contributor
URL: https://html.spec.whatwg.org/#2dcontext
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-11-25 11:16 UTC by contributor
Modified: 2015-04-24 19:38 UTC (History)
2 users (show)

See Also:


Attachments

Description contributor 2014-11-25 11:16:14 UTC
Specification: https://html.spec.whatwg.org/
Multipage: https://html.spec.whatwg.org/multipage/#2dcontext
Complete: https://html.spec.whatwg.org/#2dcontext
Referrer: 

Comment:
CanvasRenderingContext2DSettings IDL misses semicolon.

IDL for CanvasRenderingContext2DSettings is not valid IDL since it misses
semicolon at the end.

Instead of:

dictionary CanvasRenderingContext2DSettings {
  boolean alpha = true;
}

It should be:

dictionary CanvasRenderingContext2DSettings {
  boolean alpha = true;
};

Posted from: 188.232.140.223
User agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.122 Safari/537.36