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 4922 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4933 | 4933 |
4934 return 1 if $type eq 'Attr'; | 4934 return 1 if $type eq 'Attr'; |
4935 return 1 if $type eq 'CDATASection'; | 4935 return 1 if $type eq 'CDATASection'; |
4936 return 1 if $type eq 'CharacterData'; | 4936 return 1 if $type eq 'CharacterData'; |
4937 return 1 if $type eq 'Comment'; | 4937 return 1 if $type eq 'Comment'; |
4938 return 1 if $type eq 'Document'; | 4938 return 1 if $type eq 'Document'; |
4939 return 1 if $type eq 'DocumentFragment'; | 4939 return 1 if $type eq 'DocumentFragment'; |
4940 return 1 if $type eq 'DocumentType'; | 4940 return 1 if $type eq 'DocumentType'; |
4941 return 1 if $type eq 'Element'; | 4941 return 1 if $type eq 'Element'; |
4942 return 1 if $type eq 'Entity'; | 4942 return 1 if $type eq 'Entity'; |
4943 return 1 if $type eq 'EntityReference'; | |
4944 return 1 if $type eq 'HTMLDocument'; | 4943 return 1 if $type eq 'HTMLDocument'; |
4945 return 1 if $type eq 'Node'; | 4944 return 1 if $type eq 'Node'; |
4946 return 1 if $type eq 'Notation'; | 4945 return 1 if $type eq 'Notation'; |
4947 return 1 if $type eq 'ProcessingInstruction'; | 4946 return 1 if $type eq 'ProcessingInstruction'; |
4948 return 1 if $type eq 'ShadowRoot'; | 4947 return 1 if $type eq 'ShadowRoot'; |
4949 return 1 if $type eq 'SVGDocument'; | 4948 return 1 if $type eq 'SVGDocument'; |
4950 return 1 if $type eq 'Text'; | 4949 return 1 if $type eq 'Text'; |
4951 | 4950 |
4952 return 1 if $type =~ /^HTML.*Element$/; | 4951 return 1 if $type =~ /^HTML.*Element$/; |
4953 return 1 if $type =~ /^SVG.*Element$/; | 4952 return 1 if $type =~ /^SVG.*Element$/; |
(...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5693 if ($currentInterface->extendedAttributes->{$extendedAttribute}) { | 5692 if ($currentInterface->extendedAttributes->{$extendedAttribute}) { |
5694 $found = 1; | 5693 $found = 1; |
5695 } | 5694 } |
5696 return 1 if $found; | 5695 return 1 if $found; |
5697 }, 0); | 5696 }, 0); |
5698 | 5697 |
5699 return $found; | 5698 return $found; |
5700 } | 5699 } |
5701 | 5700 |
5702 1; | 5701 1; |
OLD | NEW |