| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2011 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org> | 3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 | 71 |
| 72 [NewObject, RaisesException, CallWith=ExecutionContext] Event createEvent(DO
MString eventType); | 72 [NewObject, RaisesException, CallWith=ExecutionContext] Event createEvent(DO
MString eventType); |
| 73 | 73 |
| 74 [NewObject] Range createRange(); | 74 [NewObject] Range createRange(); |
| 75 | 75 |
| 76 // NodeFilter.SHOW_ALL = 0xFFFFFFFF | 76 // NodeFilter.SHOW_ALL = 0xFFFFFFFF |
| 77 [NewObject] NodeIterator createNodeIterator(Node root, optional unsigned lon
g whatToShow = 0xFFFFFFFF, optional NodeFilter? filter = null); | 77 [NewObject] NodeIterator createNodeIterator(Node root, optional unsigned lon
g whatToShow = 0xFFFFFFFF, optional NodeFilter? filter = null); |
| 78 [NewObject] TreeWalker createTreeWalker(Node root, optional unsigned long wh
atToShow = 0xFFFFFFFF, optional NodeFilter? filter = null); | 78 [NewObject] TreeWalker createTreeWalker(Node root, optional unsigned long wh
atToShow = 0xFFFFFFFF, optional NodeFilter? filter = null); |
| 79 | 79 |
| 80 // NonDocumentRootScroller (https://github.com/bokand/NonDocumentRootScrolle
r) | 80 // NonDocumentRootScroller (https://github.com/bokand/NonDocumentRootScrolle
r) |
| 81 [RaisesException=Setter, OriginTrialEnabled=RootScroller, Measure] attribute
Element? rootScroller; | 81 [RaisesException=Setter, RuntimeEnabled=SetRootScroller, Measure] attribute
Element? rootScroller; |
| 82 | 82 |
| 83 // FIXME: xmlEncoding/xmlVersion/xmlStandalone have been removed from the sp
ec. | 83 // FIXME: xmlEncoding/xmlVersion/xmlStandalone have been removed from the sp
ec. |
| 84 [MeasureAs=DocumentXMLEncoding] readonly attribute DOMString? xmlEncoding; | 84 [MeasureAs=DocumentXMLEncoding] readonly attribute DOMString? xmlEncoding; |
| 85 [RaisesException=Setter, MeasureAs=DocumentXMLVersion] attribute DOMString?
xmlVersion; | 85 [RaisesException=Setter, MeasureAs=DocumentXMLVersion] attribute DOMString?
xmlVersion; |
| 86 [RaisesException=Setter, MeasureAs=DocumentXMLStandalone] attribute boolean
xmlStandalone; | 86 [RaisesException=Setter, MeasureAs=DocumentXMLStandalone] attribute boolean
xmlStandalone; |
| 87 | 87 |
| 88 // HTML | 88 // HTML |
| 89 // https://html.spec.whatwg.org/#the-document-object | 89 // https://html.spec.whatwg.org/#the-document-object |
| 90 | 90 |
| 91 // resource metadata management | 91 // resource metadata management |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa
ndler onsecuritypolicyviolation; | 209 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa
ndler onsecuritypolicyviolation; |
| 210 attribute EventHandler onselectionchange; | 210 attribute EventHandler onselectionchange; |
| 211 attribute EventHandler onselectstart; | 211 attribute EventHandler onselectstart; |
| 212 attribute EventHandler onwheel; | 212 attribute EventHandler onwheel; |
| 213 }; | 213 }; |
| 214 | 214 |
| 215 Document implements GlobalEventHandlers; | 215 Document implements GlobalEventHandlers; |
| 216 Document implements ParentNode; | 216 Document implements ParentNode; |
| 217 Document implements NonElementParentNode; | 217 Document implements NonElementParentNode; |
| 218 Document implements DocumentOrShadowRoot; | 218 Document implements DocumentOrShadowRoot; |
| OLD | NEW |