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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 | 237 |
238 my %svgTypeNewPropertyImplementation = ( | 238 my %svgTypeNewPropertyImplementation = ( |
239 "SVGLength" => 1, | 239 "SVGLength" => 1, |
240 "SVGLengthList" => 1, | 240 "SVGLengthList" => 1, |
241 "SVGNumber" => 1, | 241 "SVGNumber" => 1, |
242 "SVGNumberList" => 1, | 242 "SVGNumberList" => 1, |
243 "SVGPoint" => 1, | 243 "SVGPoint" => 1, |
244 "SVGPointList" => 1, | 244 "SVGPointList" => 1, |
245 "SVGPreserveAspectRatio" => 1, | 245 "SVGPreserveAspectRatio" => 1, |
246 "SVGRect" => 1, | 246 "SVGRect" => 1, |
| 247 "SVGString" => 1, |
| 248 "SVGStringList" => 1, |
247 ); | 249 ); |
248 | 250 |
249 my %svgTypeNeedingTearOff = ( | 251 my %svgTypeNeedingTearOff = ( |
250 "SVGAngle" => "SVGPropertyTearOff<SVGAngle>", | 252 "SVGAngle" => "SVGPropertyTearOff<SVGAngle>", |
251 "SVGMatrix" => "SVGMatrixTearOff", | 253 "SVGMatrix" => "SVGMatrixTearOff", |
252 "SVGPathSegList" => "SVGPathSegListPropertyTearOff", | 254 "SVGPathSegList" => "SVGPathSegListPropertyTearOff", |
253 "SVGStringList" => "SVGStaticListPropertyTearOff<SVGStringList>", | |
254 "SVGTransform" => "SVGPropertyTearOff<SVGTransform>", | 255 "SVGTransform" => "SVGPropertyTearOff<SVGTransform>", |
255 "SVGTransformList" => "SVGTransformListPropertyTearOff" | 256 "SVGTransformList" => "SVGTransformListPropertyTearOff" |
256 ); | 257 ); |
257 | 258 |
258 my %svgTypeWithWritablePropertiesNeedingTearOff = ( | 259 my %svgTypeWithWritablePropertiesNeedingTearOff = ( |
259 "SVGMatrix" => 1 | 260 "SVGMatrix" => 1 |
260 ); | 261 ); |
261 | 262 |
262 # Default license header | 263 # Default license header |
263 my $licenseHeader = <<EOF; | 264 my $licenseHeader = <<EOF; |
(...skipping 6172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6436 if ($parameter->type eq "SerializedScriptValue") { | 6437 if ($parameter->type eq "SerializedScriptValue") { |
6437 return 1; | 6438 return 1; |
6438 } elsif (IsIntegerType($parameter->type)) { | 6439 } elsif (IsIntegerType($parameter->type)) { |
6439 return 1; | 6440 return 1; |
6440 } | 6441 } |
6441 } | 6442 } |
6442 return 0; | 6443 return 0; |
6443 } | 6444 } |
6444 | 6445 |
6445 1; | 6446 1; |
OLD | NEW |