| 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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 "onerror" => 1, "onload" => 1, "onmousedown" => 1
, | 232 "onerror" => 1, "onload" => 1, "onmousedown" => 1
, |
| 233 "onmouseenter" => 1, "onmouseleave" => 1, | 233 "onmouseenter" => 1, "onmouseleave" => 1, |
| 234 "onmousemove" => 1, "onmouseout" => 1, "onmouseov
er" => 1, | 234 "onmousemove" => 1, "onmouseout" => 1, "onmouseov
er" => 1, |
| 235 "onmouseup" => 1, "onresize" => 1, "onscroll" =>
1, | 235 "onmouseup" => 1, "onresize" => 1, "onscroll" =>
1, |
| 236 "onunload" => 1); | 236 "onunload" => 1); |
| 237 | 237 |
| 238 my %svgTypeNewPropertyImplementation = ( | 238 my %svgTypeNewPropertyImplementation = ( |
| 239 "SVGLength" => 1, | 239 "SVGLength" => 1, |
| 240 "SVGLengthList" => 1, | 240 "SVGLengthList" => 1, |
| 241 "SVGRect" => 1, | 241 "SVGRect" => 1, |
| 242 "SVGPoint" => 1, |
| 243 "SVGPointList" => 1, |
| 242 ); | 244 ); |
| 243 | 245 |
| 244 my %svgTypeNeedingTearOff = ( | 246 my %svgTypeNeedingTearOff = ( |
| 245 "SVGAngle" => "SVGPropertyTearOff<SVGAngle>", | 247 "SVGAngle" => "SVGPropertyTearOff<SVGAngle>", |
| 246 "SVGMatrix" => "SVGMatrixTearOff", | 248 "SVGMatrix" => "SVGMatrixTearOff", |
| 247 "SVGNumber" => "SVGPropertyTearOff<SVGNumber>", | 249 "SVGNumber" => "SVGPropertyTearOff<SVGNumber>", |
| 248 "SVGNumberList" => "SVGListPropertyTearOff<SVGNumberList>", | 250 "SVGNumberList" => "SVGListPropertyTearOff<SVGNumberList>", |
| 249 "SVGPathSegList" => "SVGPathSegListPropertyTearOff", | 251 "SVGPathSegList" => "SVGPathSegListPropertyTearOff", |
| 250 "SVGPoint" => "SVGPropertyTearOff<SVGPoint>", | |
| 251 "SVGPointList" => "SVGListPropertyTearOff<SVGPointList>", | |
| 252 "SVGPreserveAspectRatio" => "SVGPropertyTearOff<SVGPreserveAspectRatio>", | 252 "SVGPreserveAspectRatio" => "SVGPropertyTearOff<SVGPreserveAspectRatio>", |
| 253 "SVGStringList" => "SVGStaticListPropertyTearOff<SVGStringList>", | 253 "SVGStringList" => "SVGStaticListPropertyTearOff<SVGStringList>", |
| 254 "SVGTransform" => "SVGPropertyTearOff<SVGTransform>", | 254 "SVGTransform" => "SVGPropertyTearOff<SVGTransform>", |
| 255 "SVGTransformList" => "SVGTransformListPropertyTearOff" | 255 "SVGTransformList" => "SVGTransformListPropertyTearOff" |
| 256 ); | 256 ); |
| 257 | 257 |
| 258 my %svgTypeWithWritablePropertiesNeedingTearOff = ( | 258 my %svgTypeWithWritablePropertiesNeedingTearOff = ( |
| 259 "SVGPoint" => 1, | 259 "SVGPoint" => 1, |
| 260 "SVGMatrix" => 1 | 260 "SVGMatrix" => 1 |
| 261 ); | 261 ); |
| (...skipping 6140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6402 if ($parameter->type eq "SerializedScriptValue") { | 6402 if ($parameter->type eq "SerializedScriptValue") { |
| 6403 return 1; | 6403 return 1; |
| 6404 } elsif (IsIntegerType($parameter->type)) { | 6404 } elsif (IsIntegerType($parameter->type)) { |
| 6405 return 1; | 6405 return 1; |
| 6406 } | 6406 } |
| 6407 } | 6407 } |
| 6408 return 0; | 6408 return 0; |
| 6409 } | 6409 } |
| 6410 | 6410 |
| 6411 1; | 6411 1; |
| OLD | NEW |