Index: Source/core/dom/TouchList.idl |
diff --git a/Source/core/dom/TouchList.idl b/Source/core/dom/TouchList.idl |
index 516946de77511bb7d5743023113aa2bfc83abe81..a0bd2637d7451be2261c6827533332baee9586a5 100644 |
--- a/Source/core/dom/TouchList.idl |
+++ b/Source/core/dom/TouchList.idl |
@@ -23,10 +23,11 @@ |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
+// http://www.w3.org/TR/touch-events/#touchlist-interface |
+ |
[ |
WillBeGarbageCollected, |
] interface TouchList { |
readonly attribute unsigned long length; |
- |
- getter Touch item(unsigned long index); |
+ getter Touch? item(unsigned long index); |
}; |