Home | History | Annotate | Download | only in dom

Lines Matching refs:description

87     // FIXME: Couldn't find a description in the HTML/DOM specifications for NETWORK_ERR, ABORT_ERR, URL_MISMATCH_ERR, and QUOTA_EXCEEDED_ERR
148 void getExceptionCodeDescription(ExceptionCode ec, ExceptionCodeDescription& description)
215 description.typeName = typeName;
216 description.name = (ec >= nameTableOffset && ec - nameTableOffset < nameTableSize) ? nameTable[ec - nameTableOffset] : 0;
217 description.description = (ec >= nameTableOffset && ec - nameTableOffset < nameTableSize) ? descriptionTable[ec - nameTableOffset] : 0;
218 description.code = code;
219 description.type = type;
222 ASSERT(description.name);
223 ASSERT(description.description);