| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 "CSSPageRule" => 1, | 73 "CSSPageRule" => 1, |
| 74 "CSSStyleDeclaration" => 1, | 74 "CSSStyleDeclaration" => 1, |
| 75 "CSSStyleRule" => 1, | 75 "CSSStyleRule" => 1, |
| 76 "CSSSupportsRule" => 1, | 76 "CSSSupportsRule" => 1, |
| 77 "WebKitCSSFilterRule" => 1, | 77 "WebKitCSSFilterRule" => 1, |
| 78 "WebKitCSSRegionRule" => 1, | 78 "WebKitCSSRegionRule" => 1, |
| 79 "WebKitCSSKeyframeRule" => 1, | 79 "WebKitCSSKeyframeRule" => 1, |
| 80 "WebKitCSSKeyframesRule" => 1, | 80 "WebKitCSSKeyframesRule" => 1, |
| 81 "CSSPrimitiveValue" => 1, | 81 "CSSPrimitiveValue" => 1, |
| 82 "CSSValue" => 1, | 82 "CSSValue" => 1, |
| 83 "CSSFontFace" => 1, |
| 84 "CSSSegmentedFontFace" => 1, |
| 83 "WebKitCSSFilterValue" => 1, | 85 "WebKitCSSFilterValue" => 1, |
| 84 "WebKitCSSMixFunctionValue" => 1, | 86 "WebKitCSSMixFunctionValue" => 1, |
| 85 "WebKitCSSTransformValue" => 1, | 87 "WebKitCSSTransformValue" => 1, |
| 86 "SVGColor" => 1, | 88 "SVGColor" => 1, |
| 87 "SVGPaint" => 1, | 89 "SVGPaint" => 1, |
| 88 "CSSValueList" => 1, | 90 "CSSValueList" => 1, |
| 89 ); | 91 ); |
| 90 | 92 |
| 91 my %partiallyHandlifiedTypeHash = (); | 93 my %partiallyHandlifiedTypeHash = (); |
| 92 | 94 |
| (...skipping 5545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5638 if ($currentInterface->extendedAttributes->{$extendedAttribute}) { | 5640 if ($currentInterface->extendedAttributes->{$extendedAttribute}) { |
| 5639 $found = 1; | 5641 $found = 1; |
| 5640 } | 5642 } |
| 5641 return 1 if $found; | 5643 return 1 if $found; |
| 5642 }, 0); | 5644 }, 0); |
| 5643 | 5645 |
| 5644 return $found; | 5646 return $found; |
| 5645 } | 5647 } |
| 5646 | 5648 |
| 5647 1; | 5649 1; |
| OLD | NEW |