| OLD | NEW |
| 1 | 1 |
| 2 # Copyright (C) 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> | 2 # Copyright (C) 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 # Copyright (C) 2006 Anders Carlsson <andersca@mac.com> | 3 # Copyright (C) 2006 Anders Carlsson <andersca@mac.com> |
| 4 # Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 4 # Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| 5 # Copyright (C) 2006 Alexey Proskuryakov <ap@webkit.org> | 5 # Copyright (C) 2006 Alexey Proskuryakov <ap@webkit.org> |
| 6 # Copyright (C) 2006 Apple Computer, Inc. | 6 # Copyright (C) 2006 Apple Computer, Inc. |
| 7 # Copyright (C) 2007 Google Inc. | 7 # Copyright (C) 2007 Google Inc. |
| 8 # | 8 # |
| 9 # This file is part of the KDE project | 9 # This file is part of the KDE project |
| 10 # | 10 # |
| (...skipping 1362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1373 return 1 if $type eq "Event"; | 1373 return 1 if $type eq "Event"; |
| 1374 return 1 if $type eq "HTMLCollection"; | 1374 return 1 if $type eq "HTMLCollection"; |
| 1375 return 1 if $type eq "HTMLDocument"; | 1375 return 1 if $type eq "HTMLDocument"; |
| 1376 return 1 if $type eq "HTMLElement"; | 1376 return 1 if $type eq "HTMLElement"; |
| 1377 return 1 if $type eq "HTMLOptionsCollection"; | 1377 return 1 if $type eq "HTMLOptionsCollection"; |
| 1378 return 1 if $type eq "ImageData"; | 1378 return 1 if $type eq "ImageData"; |
| 1379 return 1 if $type eq "Node"; | 1379 return 1 if $type eq "Node"; |
| 1380 return 1 if $type eq "NodeList"; | 1380 return 1 if $type eq "NodeList"; |
| 1381 return 1 if $type eq "NodeFilter"; | 1381 return 1 if $type eq "NodeFilter"; |
| 1382 return 1 if $type eq "NodeIterator"; | 1382 return 1 if $type eq "NodeIterator"; |
| 1383 return 1 if $type eq "NSResolver"; |
| 1383 return 1 if $type eq "ProcessingInstruction"; | 1384 return 1 if $type eq "ProcessingInstruction"; |
| 1384 return 1 if $type eq "Range"; | 1385 return 1 if $type eq "Range"; |
| 1385 return 1 if $type eq "Text"; | 1386 return 1 if $type eq "Text"; |
| 1386 return 1 if $type eq "TextMetrics"; | 1387 return 1 if $type eq "TextMetrics"; |
| 1387 return 1 if $type eq "TreeWalker"; | 1388 return 1 if $type eq "TreeWalker"; |
| 1388 return 1 if $type eq "XPathExpression"; | 1389 return 1 if $type eq "XPathExpression"; |
| 1389 return 1 if $type eq "XPathNSResolver"; | 1390 return 1 if $type eq "XPathNSResolver"; |
| 1390 return 1 if $type eq "XPathResult"; | 1391 return 1 if $type eq "XPathResult"; |
| 1391 | 1392 |
| 1392 return 1 if $type eq "SVGAngle"; | 1393 return 1 if $type eq "SVGAngle"; |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1448 "DOMWindow" => 0, | 1449 "DOMWindow" => 0, |
| 1449 "DocumentType" => 0, | 1450 "DocumentType" => 0, |
| 1450 "Element" => 0, | 1451 "Element" => 0, |
| 1451 "Event" => 0, | 1452 "Event" => 0, |
| 1452 "EventListener" => 0, | 1453 "EventListener" => 0, |
| 1453 "EventTarget" => 0, | 1454 "EventTarget" => 0, |
| 1454 "HTMLElement" => 0, | 1455 "HTMLElement" => 0, |
| 1455 "HTMLOptionElement" => 0, | 1456 "HTMLOptionElement" => 0, |
| 1456 "Node" => 0, | 1457 "Node" => 0, |
| 1457 "NodeFilter" => 0, | 1458 "NodeFilter" => 0, |
| 1459 "NSResolver" => 0, |
| 1458 "Range" => 0, | 1460 "Range" => 0, |
| 1459 "SQLResultSet" => 0, | 1461 "SQLResultSet" => 0, |
| 1460 "SVGAngle" => 0, | 1462 "SVGAngle" => 0, |
| 1461 "SVGElement" => 0, | 1463 "SVGElement" => 0, |
| 1462 "SVGLength" => 0, | 1464 "SVGLength" => 0, |
| 1463 "SVGMatrix" => 0, | 1465 "SVGMatrix" => 0, |
| 1464 "SVGNumber" => 0, | 1466 "SVGNumber" => 0, |
| 1465 "SVGPaintType" => 0, | 1467 "SVGPaintType" => 0, |
| 1466 "SVGPathSeg" => 0, | 1468 "SVGPathSeg" => 0, |
| 1467 "SVGPoint" => 0, | 1469 "SVGPoint" => 0, |
| (...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1923 return 0; | 1925 return 0; |
| 1924 } | 1926 } |
| 1925 | 1927 |
| 1926 sub DebugPrint | 1928 sub DebugPrint |
| 1927 { | 1929 { |
| 1928 my $output = shift; | 1930 my $output = shift; |
| 1929 | 1931 |
| 1930 print $output; | 1932 print $output; |
| 1931 print "\n"; | 1933 print "\n"; |
| 1932 } | 1934 } |
| OLD | NEW |