This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Extracted from http://www.w3.org/TR/dom/ | |
// Copyright © 2015 W3C® (MIT, ERCIM, Keio, Beihang). | |
// Some Rights Reserved: this document is dual-licensed, CC-BY and W3C Document License. | |
// W3C liability, trademark and document use rules apply. | |
exception DOMException { | |
const unsigned short INDEX_SIZE_ERR = 1; | |
const unsigned short DOMSTRING_SIZE_ERR = 2; // historical | |
const unsigned short HIERARCHY_REQUEST_ERR = 3; | |
const unsigned short WRONG_DOCUMENT_ERR = 4; |