Chromium Code Reviews

Unified Diff: Source/WebCore/html/canvas/DataView.idl

Issue 14244017: Make length property return useful values for DOM bindings functions (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Make length property return useful values for DOM bindings functions and interfaces Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: Source/WebCore/html/canvas/DataView.idl
diff --git a/Source/WebCore/html/canvas/DataView.idl b/Source/WebCore/html/canvas/DataView.idl
index bb923f35e2952f84f93ac61abc800c511b812510..7e96876d8121b85a56efa67767f6cd262eee559c 100644
--- a/Source/WebCore/html/canvas/DataView.idl
+++ b/Source/WebCore/html/canvas/DataView.idl
@@ -24,7 +24,7 @@
*/
[
- CustomConstructor,
+ CustomConstructor(ArrayBuffer buffer, [Optional] unsigned long byteOffset, [Optional] unsigned long byteLength),
CustomToJSObject
] interface DataView : ArrayBufferView {
// All these methods raise an exception if they would read or write beyond the end of the view.

Powered by Google App Engine