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 27702 - KeyAlgorithm misses semicolon
Summary: KeyAlgorithm misses semicolon
Status: RESOLVED FIXED
Alias: None
Product: Web Cryptography
Classification: Unclassified
Component: Web Cryptography API Document (show other bugs)
Version: unspecified
Hardware: All All
: P2 normal
Target Milestone: ---
Assignee: Ryan Sleevi
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-12-26 18:47 UTC by Rainer Schuster
Modified: 2016-05-24 00:20 UTC (History)
3 users (show)

See Also:


Attachments

Description Rainer Schuster 2014-12-26 18:47:22 UTC
The following is specified:

dictionary KeyAlgorithm {
  required DOMString name
};

but it should be

dictionary KeyAlgorithm {
  required DOMString name;
};

The semicolon after "name" is missing.
Comment 1 jimsch 2016-03-09 06:57:31 UTC
This has been fixed.