OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 16 matching lines...) Expand all Loading... |
27 #include "core/svg/animation/SVGSMILElement.h" | 27 #include "core/svg/animation/SVGSMILElement.h" |
28 | 28 |
29 #include "SVGNames.h" | 29 #include "SVGNames.h" |
30 #include "XLinkNames.h" | 30 #include "XLinkNames.h" |
31 #include "bindings/v8/ExceptionStatePlaceholder.h" | 31 #include "bindings/v8/ExceptionStatePlaceholder.h" |
32 #include "bindings/v8/ScriptEventListener.h" | 32 #include "bindings/v8/ScriptEventListener.h" |
33 #include "core/dom/Document.h" | 33 #include "core/dom/Document.h" |
34 #include "core/events/EventListener.h" | 34 #include "core/events/EventListener.h" |
35 #include "core/events/EventSender.h" | 35 #include "core/events/EventSender.h" |
36 #include "core/svg/SVGDocumentExtensions.h" | 36 #include "core/svg/SVGDocumentExtensions.h" |
| 37 #include "core/svg/SVGElementInstance.h" |
37 #include "core/svg/SVGSVGElement.h" | 38 #include "core/svg/SVGSVGElement.h" |
38 #include "core/svg/SVGURIReference.h" | 39 #include "core/svg/SVGURIReference.h" |
39 #include "core/svg/animation/SMILTimeContainer.h" | 40 #include "core/svg/animation/SMILTimeContainer.h" |
40 #include "platform/FloatConversion.h" | 41 #include "platform/FloatConversion.h" |
41 #include "wtf/MathExtras.h" | 42 #include "wtf/MathExtras.h" |
42 #include "wtf/StdLibExtras.h" | 43 #include "wtf/StdLibExtras.h" |
43 #include "wtf/Vector.h" | 44 #include "wtf/Vector.h" |
44 | 45 |
45 using namespace std; | 46 using namespace std; |
46 | 47 |
(...skipping 1264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1311 if (eventType == "repeatn") { | 1312 if (eventType == "repeatn") { |
1312 unsigned repeatEventCount = m_repeatEventCountList.first(); | 1313 unsigned repeatEventCount = m_repeatEventCountList.first(); |
1313 m_repeatEventCountList.remove(0); | 1314 m_repeatEventCountList.remove(0); |
1314 dispatchEvent(RepeatEvent::create(eventType, repeatEventCount)); | 1315 dispatchEvent(RepeatEvent::create(eventType, repeatEventCount)); |
1315 } else { | 1316 } else { |
1316 dispatchEvent(Event::create(eventType)); | 1317 dispatchEvent(Event::create(eventType)); |
1317 } | 1318 } |
1318 } | 1319 } |
1319 | 1320 |
1320 } | 1321 } |
OLD | NEW |