Chromium Code Reviews| Index: Source/core/xml/XPathResult.idl |
| diff --git a/Source/core/xml/XPathResult.idl b/Source/core/xml/XPathResult.idl |
| index f60a5eaac047722d8a0cda938a848ed6569014ba..742a7a7c312faab265ca6a067f6903178e70e107 100644 |
| --- a/Source/core/xml/XPathResult.idl |
| +++ b/Source/core/xml/XPathResult.idl |
| @@ -43,7 +43,6 @@ |
| readonly attribute boolean invalidIteratorState; |
| [RaisesException=Getter] readonly attribute unsigned long snapshotLength; |
| - [RaisesException] Node iterateNext(); |
| - [RaisesException] Node snapshotItem([Default=Undefined] optional unsigned long index); |
| + [RaisesException] Node? iterateNext(); |
|
philipj_slow
2015/03/06 15:53:13
Both of these changes make good sense.
|
| + [RaisesException] Node? snapshotItem(unsigned long index); |
| }; |
| - |