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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 resolveFirstInterval(); | 307 resolveFirstInterval(); |
308 } | 308 } |
309 | 309 |
310 Node::InsertionNotificationRequest SVGSMILElement::insertedInto(ContainerNode* r
ootParent) | 310 Node::InsertionNotificationRequest SVGSMILElement::insertedInto(ContainerNode* r
ootParent) |
311 { | 311 { |
312 SVGElement::insertedInto(rootParent); | 312 SVGElement::insertedInto(rootParent); |
313 | 313 |
314 if (!rootParent->inDocument()) | 314 if (!rootParent->inDocument()) |
315 return InsertionDone; | 315 return InsertionDone; |
316 | 316 |
317 UseCounter::count(document(), UseCounter::SVGSMILElementInDocument); | 317 UseCounter::countDeprecation(document(), UseCounter::SVGSMILElementInDocumen
t); |
318 | 318 |
319 setAttributeName(constructQualifiedName(this, fastGetAttribute(SVGNames::att
ributeNameAttr))); | 319 setAttributeName(constructQualifiedName(this, fastGetAttribute(SVGNames::att
ributeNameAttr))); |
320 SVGSVGElement* owner = ownerSVGElement(); | 320 SVGSVGElement* owner = ownerSVGElement(); |
321 if (!owner) | 321 if (!owner) |
322 return InsertionDone; | 322 return InsertionDone; |
323 | 323 |
324 m_timeContainer = owner->timeContainer(); | 324 m_timeContainer = owner->timeContainer(); |
325 ASSERT(m_timeContainer); | 325 ASSERT(m_timeContainer); |
326 m_timeContainer->setDocumentOrderIndexesDirty(); | 326 m_timeContainer->setDocumentOrderIndexesDirty(); |
327 | 327 |
(...skipping 1026 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1354 visitor->trace(m_targetElement); | 1354 visitor->trace(m_targetElement); |
1355 visitor->trace(m_timeContainer); | 1355 visitor->trace(m_timeContainer); |
1356 visitor->trace(m_conditions); | 1356 visitor->trace(m_conditions); |
1357 visitor->trace(m_syncBaseDependents); | 1357 visitor->trace(m_syncBaseDependents); |
1358 #endif | 1358 #endif |
1359 SVGElement::trace(visitor); | 1359 SVGElement::trace(visitor); |
1360 SVGTests::trace(visitor); | 1360 SVGTests::trace(visitor); |
1361 } | 1361 } |
1362 | 1362 |
1363 } // namespace blink | 1363 } // namespace blink |
OLD | NEW |