OLD | NEW |
1 # Copyright (C) 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> | 1 # Copyright (C) 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> |
2 # Copyright (C) 2006 Anders Carlsson <andersca@mac.com> | 2 # Copyright (C) 2006 Anders Carlsson <andersca@mac.com> |
3 # Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 # Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
4 # Copyright (C) 2006 Alexey Proskuryakov <ap@webkit.org> | 4 # Copyright (C) 2006 Alexey Proskuryakov <ap@webkit.org> |
5 # Copyright (C) 2006 Apple Computer, Inc. | 5 # Copyright (C) 2006 Apple Computer, Inc. |
6 # Copyright (C) 2007, 2008, 2009, 2012 Google Inc. | 6 # Copyright (C) 2007, 2008, 2009, 2012 Google Inc. |
7 # Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au> | 7 # Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au> |
8 # Copyright (C) Research In Motion Limited 2010. All rights reserved. | 8 # Copyright (C) Research In Motion Limited 2010. All rights reserved. |
9 # Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 9 # Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
10 # Copyright (C) 2012 Ericsson AB. All rights reserved. | 10 # Copyright (C) 2012 Ericsson AB. All rights reserved. |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 "HTMLDocument" => 1, | 214 "HTMLDocument" => 1, |
215 "Node" => 1, | 215 "Node" => 1, |
216 "Notation" => 1, | 216 "Notation" => 1, |
217 "ProcessingInstruction" => 1, | 217 "ProcessingInstruction" => 1, |
218 "ShadowRoot" => 1, | 218 "ShadowRoot" => 1, |
219 "SVGDocument" => 1, | 219 "SVGDocument" => 1, |
220 "Text" => 1, | 220 "Text" => 1, |
221 "TestNode" => 1, | 221 "TestNode" => 1, |
222 "TestInterfaceDocument" => 1, | 222 "TestInterfaceDocument" => 1, |
223 "TestInterfaceNode" => 1, | 223 "TestInterfaceNode" => 1, |
| 224 "XMLDocument" => 1, |
224 ); | 225 ); |
225 | 226 |
226 my %callbackFunctionTypeHash = (); | 227 my %callbackFunctionTypeHash = (); |
227 | 228 |
228 my %enumTypeHash = (); | 229 my %enumTypeHash = (); |
229 | 230 |
230 my %svgAttributesInHTMLHash = ("class" => 1, "id" => 1, "onabort" => 1, "onclick
" => 1, | 231 my %svgAttributesInHTMLHash = ("class" => 1, "id" => 1, "onabort" => 1, "onclick
" => 1, |
231 "onerror" => 1, "onload" => 1, "onmousedown" => 1
, | 232 "onerror" => 1, "onload" => 1, "onmousedown" => 1
, |
232 "onmouseenter" => 1, "onmouseleave" => 1, | 233 "onmouseenter" => 1, "onmouseleave" => 1, |
233 "onmousemove" => 1, "onmouseout" => 1, "onmouseov
er" => 1, | 234 "onmousemove" => 1, "onmouseout" => 1, "onmouseov
er" => 1, |
(...skipping 6159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6393 if ($parameter->type eq "SerializedScriptValue") { | 6394 if ($parameter->type eq "SerializedScriptValue") { |
6394 return 1; | 6395 return 1; |
6395 } elsif (IsIntegerType($parameter->type)) { | 6396 } elsif (IsIntegerType($parameter->type)) { |
6396 return 1; | 6397 return 1; |
6397 } | 6398 } |
6398 } | 6399 } |
6399 return 0; | 6400 return 0; |
6400 } | 6401 } |
6401 | 6402 |
6402 1; | 6403 1; |
OLD | NEW |