OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2014 Google Inc. All rights reserved. | 2 * Copyright (C) 2014 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 12 matching lines...) Expand all Loading... |
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #include "core/svg/SVGNumberTearOff.h" | 31 #include "core/svg/SVGNumberTearOff.h" |
32 | 32 |
33 #include "bindings/core/v8/ExceptionState.h" | |
34 #include "core/dom/ExceptionCode.h" | |
35 #include "core/svg/SVGElement.h" | 33 #include "core/svg/SVGElement.h" |
36 | 34 |
37 namespace blink { | 35 namespace blink { |
38 | 36 |
39 SVGNumberTearOff::SVGNumberTearOff(SVGNumber* target, SVGElement* contextElement
, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName) | 37 SVGNumberTearOff::SVGNumberTearOff(SVGNumber* target, SVGElement* contextElement
, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName) |
40 : SVGPropertyTearOff<SVGNumber>(target, contextElement, propertyIsAnimVal, a
ttributeName) | 38 : SVGPropertyTearOff<SVGNumber>(target, contextElement, propertyIsAnimVal, a
ttributeName) |
41 { | 39 { |
42 } | 40 } |
43 | 41 |
44 void SVGNumberTearOff::setValue(float f, ExceptionState& exceptionState) | 42 void SVGNumberTearOff::setValue(float f, ExceptionState& exceptionState) |
45 { | 43 { |
46 if (isImmutable()) { | 44 if (isImmutable()) { |
47 exceptionState.throwDOMException(NoModificationAllowedError, "The attrib
ute is read-only."); | 45 throwReadOnly(exceptionState); |
48 return; | 46 return; |
49 } | 47 } |
50 | |
51 target()->setValue(f); | 48 target()->setValue(f); |
52 commitChange(); | 49 commitChange(); |
53 } | 50 } |
54 | 51 |
55 DEFINE_TRACE_WRAPPERS(SVGNumberTearOff) | 52 DEFINE_TRACE_WRAPPERS(SVGNumberTearOff) |
56 { | 53 { |
57 visitor->traceWrappers(contextElement()); | 54 visitor->traceWrappers(contextElement()); |
58 } | 55 } |
59 | 56 |
60 } // namespace blink | 57 } // namespace blink |
OLD | NEW |