diff options
Diffstat (limited to 'Source/WebCore/xml/XSLTProcessor.idl')
-rw-r--r-- | Source/WebCore/xml/XSLTProcessor.idl | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/Source/WebCore/xml/XSLTProcessor.idl b/Source/WebCore/xml/XSLTProcessor.idl index 9dd659381..25129861a 100644 --- a/Source/WebCore/xml/XSLTProcessor.idl +++ b/Source/WebCore/xml/XSLTProcessor.idl @@ -10,7 +10,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of + * 3. Neither the name of Apple Inc. ("Apple") nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * @@ -35,17 +35,14 @@ Constructor, ImplementationLacksVTable, ] interface XSLTProcessor { - - void importStylesheet([Default=Undefined] optional Node stylesheet); - DocumentFragment transformToFragment([Default=Undefined] optional Node source, [Default=Undefined] optional Document docVal); - Document transformToDocument([Default=Undefined] optional Node source); + void importStylesheet(optional Node? stylesheet = null); + DocumentFragment transformToFragment(optional Node? source = null, optional Document? docVal = null); + Document transformToDocument(optional Node? source = null); - [Custom] void setParameter(DOMString namespaceURI, DOMString localName, DOMString value); - [Custom, TreatReturnedNullStringAs=Undefined] DOMString getParameter(DOMString namespaceURI, DOMString localName); - [Custom] void removeParameter(DOMString namespaceURI, DOMString localName); + void setParameter(DOMString? namespaceURI, DOMString? localName, DOMString? value); + DOMString? getParameter(DOMString? namespaceURI, DOMString? localName); + void removeParameter(DOMString? namespaceURI, DOMString? localName); void clearParameters(); void reset(); - }; - |