HomeSort by relevance Sort by last modified time
    Searched refs:throwDOMException (Results 51 - 75 of 115) sorted by null

1 23 4 5

  /external/chromium_org/third_party/WebKit/Source/modules/encoding/
TextDecoder.cpp 97 exceptionState.throwDOMException(EncodingError, "The encoded data was not valid.");
  /external/chromium_org/third_party/WebKit/Source/modules/notifications/
WebKitNotification.cpp 64 es.throwDOMException(SyntaxError, "'" + iconUrl + "' is not a valid icon URL.");
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
DefaultAudioDestinationNode.cpp 123 exceptionState.throwDOMException(
WaveShaperNode.cpp 75 exceptionState.throwDOMException(
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocket.cpp 208 exceptionState.throwDOMException(InvalidStateError, "Still in CONNECTING state.");
249 exceptionState.throwDOMException(SyntaxError, "Failed to create a WebSocket: the provided URL is invalid.");
290 exceptionState.throwDOMException(SyntaxError, "The URL '" + url + "' is invalid.");
295 exceptionState.throwDOMException(SyntaxError, "The URL's scheme must be either 'ws' or 'wss'. '" + m_url.protocol() + "' is not allowed.");
300 exceptionState.throwDOMException(SyntaxError, "The URL contains a fragment identifier ('" + m_url.fragmentIdentifier() + "'). Fragment identifiers are not allowed in WebSocket URLs.");
334 exceptionState.throwDOMException(SyntaxError, "The subprotocol '" + encodeProtocolString(protocols[i]) + "' is invalid.");
342 exceptionState.throwDOMException(SyntaxError, "The subprotocol '" + encodeProtocolString(protocols[i]) + "' is duplicated.");
358 exceptionState.throwDOMException(SyntaxError, "The message contains invalid characters.");
464 exceptionState.throwDOMException(InvalidAccessError, "The code must be either 1000, or between 3000 and 4999. " + String::number(code) + " is neither.");
469 exceptionState.throwDOMException(SyntaxError, "The message must not be greater than " + String::number(maxReasonSizeInBytes) + " by (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Range.cpp 132 exceptionState.throwDOMException(InvalidStateError, "The range has no container. Perhaps 'detatch()' has been invoked on this object?");
142 exceptionState.throwDOMException(InvalidStateError, "The range has no container. Perhaps 'detatch()' has been invoked on this object?");
152 exceptionState.throwDOMException(InvalidStateError, "The range has no container. Perhaps 'detatch()' has been invoked on this object?");
162 exceptionState.throwDOMException(InvalidStateError, "The range has no container. Perhaps 'detatch()' has been invoked on this object?");
172 exceptionState.throwDOMException(InvalidStateError, "The range has no container. Perhaps 'detatch()' has been invoked on this object?");
193 exceptionState.throwDOMException(InvalidStateError, "The range has no container. Perhaps 'detatch()' has been invoked on this object?");
215 exceptionState.throwDOMException(InvalidStateError, "The range has no container. Perhaps 'detatch()' has been invoked on this object?");
243 exceptionState.throwDOMException(InvalidStateError, "The range has no container. Perhaps 'detatch()' has been invoked on this object?");
283 exceptionState.throwDOMException(InvalidStateError, "The range has no container. Perhaps 'detatch()' has been invoked on this object?");
296 exceptionState.throwDOMException(InvalidStateError, "The range has no container. Perhaps 'detatch()' has been invoked on this objec (…)
    [all...]
ContainerNode.cpp 118 exceptionState.throwDOMException(NotFoundError, "The new child element is null.");
126 exceptionState.throwDOMException(HierarchyRequestError, "The new child element contains the parent.");
135 exceptionState.throwDOMException(HierarchyRequestError, "The new child element is a pseudo-element.");
140 exceptionState.throwDOMException(HierarchyRequestError, "The new child element contains the parent.");
147 exceptionState.throwDOMException(HierarchyRequestError, "Failed to replace child.");
151 exceptionState.throwDOMException(HierarchyRequestError, "Nodes of type '" + newChild->nodeName() + "' may not be inserted inside nodes of type '" + nodeName() + "'.");
162 exceptionState.throwDOMException(HierarchyRequestError, "The new child element contains the parent.");
189 exceptionState.throwDOMException(NotFoundError, "The node before which the new node is to be inserted is not a child of this node.");
296 exceptionState.throwDOMException(NotFoundError, "The node to be replaced is null.");
306 exceptionState.throwDOMException(NotFoundError, "The node to be replaced is not a child of this node.")
    [all...]
Attr.cpp 102 exceptionState.throwDOMException(NamespaceError, "The prefix '" + xmlnsAtom + "' may not be used on the namespace '" + namespaceURI() + "'.");
107 exceptionState.throwDOMException(NamespaceError, "The prefix '" + prefix + "' may not be used as a namespace prefix for attributes whose qualified name is '" + xmlnsAtom + "'.");
DatasetDOMStringMap.cpp 184 exceptionState.throwDOMException(SyntaxError, ExceptionMessages::failedToSet(name, "DOMStringMap", "'" + name + "' is not a valid property name."));
194 exceptionState.throwDOMException(SyntaxError, ExceptionMessages::failedToDelete(name, "DOMStringMap", "'" + name + "' is not a valid property name."));
NodeIterator.cpp 92 exceptionState.throwDOMException(InvalidStateError, "The iterator is detached.");
121 exceptionState.throwDOMException(InvalidStateError, "The iterator is detached.");
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequest.cpp 217 exceptionState.throwDOMException(InvalidStateError, "The value is only accessible if the object's 'responseType' is '' or 'text' (was '" + responseType() + "').");
237 exceptionState.throwDOMException(InvalidStateError, "The value is only accessible if the object's 'responseType' is '' or 'document' (was '" + responseType() + "').");
334 exceptionState.throwDOMException(InvalidAccessError, "Timeouts cannot be set for synchronous requests made from a document.");
343 exceptionState.throwDOMException(InvalidStateError, "The response type cannot be set if the object's state is LOADING or DONE.");
352 exceptionState.throwDOMException(InvalidAccessError, "The response type can only be changed for asynchronous HTTP requests made from a document.");
463 exceptionState.throwDOMException(InvalidStateError, "The value may only be set if the object's state is UNSENT or OPENED.");
537 exceptionState.throwDOMException(SyntaxError, "'" + method + "' is not a valid HTTP method.");
554 exceptionState.throwDOMException(InvalidAccessError, "Synchronous requests are disabled for this page.");
563 exceptionState.throwDOMException(InvalidAccessError, "Synchronous HTTP requests from a document must not set a response type.");
569 exceptionState.throwDOMException(InvalidAccessError, "Synchronous requests must not set a timeout.")
    [all...]
XPathResult.cpp 189 exceptionState.throwDOMException(InvalidStateError, "The document has mutated since the result was returned.");
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLProgressElement.cpp 104 exceptionState.throwDOMException(NotSupportedError, ExceptionMessages::notAFiniteNumber(value));
119 exceptionState.throwDOMException(NotSupportedError, ExceptionMessages::notAFiniteNumber(max));
HTMLVideoElement.cpp 215 exceptionState.throwDOMException(InvalidStateError, "This element may only enter fullscreen mode in response to a user gesture ('click', for example).");
219 exceptionState.throwDOMException(InvalidStateError, "This element does not support fullscreen mode.");
TimeRanges.cpp 119 exceptionState.throwDOMException(IndexSizeError, "The index provided (" + String::number(index) + ") is not less than the object's length (" + String::number(length()) + ").");
128 exceptionState.throwDOMException(IndexSizeError, "The index provided (" + String::number(index) + ") is not less than the object's length (" + String::number(length()) + ").");
HTMLInputElement.cpp 525 exceptionState.throwDOMException(InvalidStateError, "The input element's type ('" + m_inputType->formControlType() + "') does not support selection.");
534 exceptionState.throwDOMException(InvalidStateError, "The input element's type ('" + m_inputType->formControlType() + "') does not support selection.");
543 exceptionState.throwDOMException(InvalidStateError, "The input element's type ('" + m_inputType->formControlType() + "') does not support selection.");
552 exceptionState.throwDOMException(InvalidStateError, "The input element's type ('" + m_inputType->formControlType() + "') does not support selection.");
561 exceptionState.throwDOMException(InvalidStateError, "The input element's type ('" + m_inputType->formControlType() + "') does not support selection.");
570 exceptionState.throwDOMException(InvalidStateError, "The input element's type ('" + m_inputType->formControlType() + "') does not support selection.");
579 exceptionState.throwDOMException(InvalidStateError, "The input element's type ('" + m_inputType->formControlType() + "') does not support selection.");
588 exceptionState.throwDOMException(InvalidStateError, "The input element's type ('" + m_inputType->formControlType() + "') does not support selection.");
    [all...]
HTMLOptionsCollection.cpp 60 exceptionState.throwDOMException(IndexSizeError, "The index provided (" + String::number(index) + ") is less than -1.");
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
WorkerGlobalScopeFileSystem.cpp 75 exceptionState.throwDOMException(InvalidModificationError, "the type must be TEMPORARY or PERSISTENT.");
114 exceptionState.throwDOMException(EncodingError, "the URL '" + url + "' is invalid.");
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8SVGLengthCustom.cpp 82 exceptionState.throwDOMException(NoModificationAllowedError, "The length is read only.");
V8BlobCustomHelpers.cpp 89 exceptionState.throwDOMException(SyntaxError, "The 'type' property must consist of ASCII characters.");
V8HTMLOptionsCollectionCustom.cpp 106 exceptionState.throwDOMException(IndexSizeError, "The value provided (" + String::number(v) + ") is negative. Lengths must be greater than or equal to 0.");
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBTransaction.cpp 128 exceptionState.throwDOMException(InvalidStateError, IDBDatabase::transactionFinishedErrorMessage);
137 exceptionState.throwDOMException(NotFoundError, IDBDatabase::noSuchObjectStoreErrorMessage);
144 exceptionState.throwDOMException(NotFoundError, IDBDatabase::noSuchObjectStoreErrorMessage);
193 exceptionState.throwDOMException(InvalidStateError, IDBDatabase::transactionFinishedErrorMessage);
  /external/chromium_org/third_party/WebKit/Source/core/timing/
PerformanceUserTiming.cpp 104 exceptionState.throwDOMException(SyntaxError, "'" + markName + "' is part of the PerformanceTiming interface, and cannot be used as a mark name.");
126 exceptionState.throwDOMException(InvalidAccessError, "'" + markName + "' is empty: either the event hasn't happened yet, or it would provide cross-origin timing information.");
132 exceptionState.throwDOMException(SyntaxError, "The mark '" + markName + "' does not exist.");
  /external/chromium_org/third_party/WebKit/Source/core/events/
EventTarget.cpp 160 exceptionState.throwDOMException(InvalidStateError, "The event provided is null.");
164 exceptionState.throwDOMException(InvalidStateError, "The event provided is uninitialized.");
168 exceptionState.throwDOMException(InvalidStateError, "The event is already being dispatched.");
  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTRegion.cpp 77 exceptionState.throwDOMException(IndexSizeError, "The value provided (" + String::number(value) + ") is not between 0 and 100.");
121 exceptionState.throwDOMException(IndexSizeError, "The height provided (" + String::number(value) + ") is negative.");
175 exceptionState.throwDOMException(SyntaxError, "The value provided ('" + value + "') is invalid. The 'scroll' property must be either the empty string, or 'up'.");

Completed in 536 milliseconds

1 23 4 5