Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Side by Side Diff: Source/core/svg/properties/SVGListPropertyTearOffHelper.h

Issue 1061263005: Throw NoModificationAllowed in SVG*List.removeItem(...) if immutable (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 } 155 }
156 156
157 bool anonymousIndexedSetter(unsigned index, PassRefPtrWillBeRawPtr<ItemTearO ffType> passItem, ExceptionState& exceptionState) 157 bool anonymousIndexedSetter(unsigned index, PassRefPtrWillBeRawPtr<ItemTearO ffType> passItem, ExceptionState& exceptionState)
158 { 158 {
159 replaceItem(passItem, index, exceptionState); 159 replaceItem(passItem, index, exceptionState);
160 return true; 160 return true;
161 } 161 }
162 162
163 PassRefPtrWillBeRawPtr<ItemTearOffType> removeItem(unsigned long index, Exce ptionState& exceptionState) 163 PassRefPtrWillBeRawPtr<ItemTearOffType> removeItem(unsigned long index, Exce ptionState& exceptionState)
164 { 164 {
165 if (toDerived()->isImmutable()) {
166 exceptionState.throwDOMException(NoModificationAllowedError, "The ob ject is read-only.");
167 return nullptr;
168 }
169
165 RefPtrWillBeRawPtr<ItemPropertyType> value = toDerived()->target()->remo veItem(index, exceptionState); 170 RefPtrWillBeRawPtr<ItemPropertyType> value = toDerived()->target()->remo veItem(index, exceptionState);
166 toDerived()->commitChange(); 171 toDerived()->commitChange();
167 172
168 return createItemTearOff(value.release()); 173 return createItemTearOff(value.release());
169 } 174 }
170 175
171 PassRefPtrWillBeRawPtr<ItemTearOffType> appendItem(PassRefPtrWillBeRawPtr<It emTearOffType> passItem, ExceptionState& exceptionState) 176 PassRefPtrWillBeRawPtr<ItemTearOffType> appendItem(PassRefPtrWillBeRawPtr<It emTearOffType> passItem, ExceptionState& exceptionState)
172 { 177 {
173 RefPtrWillBeRawPtr<ItemTearOffType> item = passItem; 178 RefPtrWillBeRawPtr<ItemTearOffType> item = passItem;
174 179
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 return ItemTraits::createTearOff(value, 0, PropertyIsNotAnimVal, Qualifi edName::null()); 212 return ItemTraits::createTearOff(value, 0, PropertyIsNotAnimVal, Qualifi edName::null());
208 } 213 }
209 214
210 private: 215 private:
211 Derived* toDerived() { return static_cast<Derived*>(this); } 216 Derived* toDerived() { return static_cast<Derived*>(this); }
212 }; 217 };
213 218
214 } 219 }
215 220
216 #endif // SVGListPropertyTearOffHelper_h 221 #endif // SVGListPropertyTearOffHelper_h
OLDNEW
« LayoutTests/svg/dom/svglist-immutable.html ('K') | « LayoutTests/svg/dom/svglist-immutable.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698