From e7b6e9935c69852c6c51ae72ce51764c540261f4 Mon Sep 17 00:00:00 2001 From: Tab Atkins Jr Date: Tue, 19 Apr 2016 14:55:25 -0700 Subject: [PATCH 1/2] Manually specify linking text for all heading-dfns, so they don't pick up the section numbers after XSLTing. --- index.xml | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/index.xml b/index.xml index 1e9a208a..0b835cb7 100644 --- a/index.xml +++ b/index.xml @@ -5076,7 +5076,7 @@ interface Person {
-

any

+

any

The any type is the union of all other possible @@ -5102,7 +5102,7 @@ interface Person {

-

boolean

+

boolean

The boolean type has two values: @@ -5120,7 +5120,7 @@ interface Person {

-

byte

+

byte

The byte type is a signed integer @@ -5138,7 +5138,7 @@ interface Person {

-

octet

+

octet

The octet type is an unsigned integer @@ -5156,7 +5156,7 @@ interface Person {

-

short

+

short

The short type is a signed integer @@ -5174,7 +5174,7 @@ interface Person {

-

unsigned short

+

unsigned short

The unsigned short type is an unsigned integer @@ -5192,7 +5192,7 @@ interface Person {

-

long

+

long

The long type is a signed integer @@ -5210,7 +5210,7 @@ interface Person {

-

unsigned long

+

unsigned long

The unsigned long type is an unsigned integer @@ -5228,7 +5228,7 @@ interface Person {

-

long long

+

long long

The long long type is a signed integer @@ -5246,7 +5246,7 @@ interface Person {

-

unsigned long long

+

unsigned long long

The unsigned long long type is an unsigned integer @@ -5264,7 +5264,7 @@ interface Person {

-

float

+

float

The float type is a floating point numeric @@ -5292,7 +5292,7 @@ interface Person {

-

unrestricted float

+

unrestricted float

The unrestricted float type is a floating point numeric @@ -5311,7 +5311,7 @@ interface Person {

-

double

+

double

The double type is a floating point numeric @@ -5330,7 +5330,7 @@ interface Person {

-

unrestricted double

+

unrestricted double

The unrestricted double type is a floating point numeric @@ -5349,7 +5349,7 @@ interface Person {

-

DOMString

+

DOMString

The DOMString type @@ -5442,7 +5442,7 @@ interface Person {

-

ByteString

+

ByteString

The ByteString type @@ -5477,7 +5477,7 @@ interface Person {

-

USVString

+

USVString

The USVString type @@ -5510,7 +5510,7 @@ interface Person {

-

object

+

object

The object type corresponds to the set of @@ -5889,7 +5889,7 @@ interface Person {

-

RegExp

+

RegExp

The RegExp type is a type @@ -5908,7 +5908,7 @@ interface Person {

-

Error

+

Error

The Error type corresponds to the set of all possible non-null references to exception objects, including From 047309273d8fad231c7f200d894feadd457d191d Mon Sep 17 00:00:00 2001 From: Tab Atkins Jr Date: Tue, 19 Apr 2016 17:20:46 -0700 Subject: [PATCH 2/2] Switch the DOMException types to exception, mark up the simple errors as interface. --- index.xml | 74 +++++++++++++++++++++++++++---------------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/index.xml b/index.xml index 0b835cb7..3b7fdfdf 100644 --- a/index.xml +++ b/index.xml @@ -4234,12 +4234,12 @@ ctx.drawRectangle(300, 200, { fillPattern: "red", position: new Point(10, 10) }) is identified by one of the following names:

These correspond to all of the ECMAScript error objects (apart from @@ -4336,175 +4336,175 @@ ctx.drawRectangle(300, 200, { fillPattern: "red", position: new Point(10, 10) }) - "IndexSizeError" + "IndexSizeError" The index is not in the allowed range. INDEX_SIZE_ERR (1) - "HierarchyRequestError" + "HierarchyRequestError" The operation would yield an incorrect node tree. HIERARCHY_REQUEST_ERR (3) - "WrongDocumentError" + "WrongDocumentError" The object is in the wrong document. WRONG_DOCUMENT_ERR (4) - "InvalidCharacterError" + "InvalidCharacterError" The string contains invalid characters. INVALID_CHARACTER_ERR (5) - "NoModificationAllowedError" + "NoModificationAllowedError" The object can not be modified. NO_MODIFICATION_ALLOWED_ERR (7) - "NotFoundError" + "NotFoundError" The object can not be found here. NOT_FOUND_ERR (8) - "NotSupportedError" + "NotSupportedError" The operation is not supported. NOT_SUPPORTED_ERR (9) - "InUseAttributeError" + "InUseAttributeError" The attribute is in use. INUSE_ATTRIBUTE_ERR (10) - "InvalidStateError" + "InvalidStateError" The object is in an invalid state. INVALID_STATE_ERR (11) - "SyntaxError" + "SyntaxError" The string did not match the expected pattern. SYNTAX_ERR (12) - "InvalidModificationError" + "InvalidModificationError" The object can not be modified in this way. INVALID_MODIFICATION_ERR (13) - "NamespaceError" + "NamespaceError" The operation is not allowed by Namespaces in XML. [XMLNS] NAMESPACE_ERR (14) - "InvalidAccessError" + "InvalidAccessError" The object does not support the operation or argument. INVALID_ACCESS_ERR (15) - "SecurityError" + "SecurityError" The operation is insecure. SECURITY_ERR (18) - "NetworkError" + "NetworkError" A network error occurred. NETWORK_ERR (19) - "AbortError" + "AbortError" The operation was aborted. ABORT_ERR (20) - "URLMismatchError" + "URLMismatchError" The given URL does not match another URL. URL_MISMATCH_ERR (21) - "QuotaExceededError" + "QuotaExceededError" The quota has been exceeded. QUOTA_EXCEEDED_ERR (22) - "TimeoutError" + "TimeoutError" The operation timed out. TIMEOUT_ERR (23) - "InvalidNodeTypeError" + "InvalidNodeTypeError" The supplied node is incorrect or has an incorrect ancestor for this operation. INVALID_NODE_TYPE_ERR (24) - "DataCloneError" + "DataCloneError" The object can not be cloned. DATA_CLONE_ERR (25) - "EncodingError" + "EncodingError" The encoding operation (either encoded or decoding) failed. — - "NotReadableError" + "NotReadableError" The I/O read operation failed. — - "UnknownError" + "UnknownError" The operation failed for an unknown transient reason (e.g. out of memory). - "ConstraintError" + "ConstraintError" A mutation operation in a transaction failed because a constraint was not satisfied. — - "DataError" + "DataError" Provided data is inadequate. — - "TransactionInactiveError" + "TransactionInactiveError" A request was placed against a transaction which is currently not active, or which is finished. — - "ReadOnlyError" + "ReadOnlyError" The mutating operation was attempted in a "readonly" transaction. — - "VersionError" + "VersionError" An attempt was made to open a database using a lower version than the existing version. — - "OperationError" + "OperationError" The operation failed for an operation-specific reason. — - "NotAllowedError" + "NotAllowedError" The request is not allowed by the user agent or the platform in the current context. —