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

Side by Side Diff: Source/core/dom/DOMTokenList.cpp

Issue 24469004: Amusingly deprecate the generic version of 'ExceptionState::throwDOMException'. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 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
« no previous file with comments | « Source/core/dom/CustomElementException.cpp ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 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 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 17 matching lines...) Expand all
28 #include "bindings/v8/ExceptionState.h" 28 #include "bindings/v8/ExceptionState.h"
29 #include "core/dom/ExceptionCode.h" 29 #include "core/dom/ExceptionCode.h"
30 #include "core/html/parser/HTMLParserIdioms.h" 30 #include "core/html/parser/HTMLParserIdioms.h"
31 #include "wtf/text/StringBuilder.h" 31 #include "wtf/text/StringBuilder.h"
32 32
33 namespace WebCore { 33 namespace WebCore {
34 34
35 bool DOMTokenList::validateToken(const AtomicString& token, ExceptionState& es) 35 bool DOMTokenList::validateToken(const AtomicString& token, ExceptionState& es)
36 { 36 {
37 if (token.isEmpty()) { 37 if (token.isEmpty()) {
38 es.throwDOMException(SyntaxError); 38 es.throwUninformativeAndGenericDOMException(SyntaxError);
39 return false; 39 return false;
40 } 40 }
41 41
42 unsigned length = token.length(); 42 unsigned length = token.length();
43 for (unsigned i = 0; i < length; ++i) { 43 for (unsigned i = 0; i < length; ++i) {
44 if (isHTMLSpace<UChar>(token[i])) { 44 if (isHTMLSpace<UChar>(token[i])) {
45 es.throwDOMException(InvalidCharacterError); 45 es.throwUninformativeAndGenericDOMException(InvalidCharacterError);
46 return false; 46 return false;
47 } 47 }
48 } 48 }
49 49
50 return true; 50 return true;
51 } 51 }
52 52
53 bool DOMTokenList::validateTokens(const Vector<String>& tokens, ExceptionState& es) 53 bool DOMTokenList::validateTokens(const Vector<String>& tokens, ExceptionState& es)
54 { 54 {
55 for (size_t i = 0; i < tokens.size(); ++i) { 55 for (size_t i = 0; i < tokens.size(); ++i) {
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 output.append(' '); 231 output.append(' ');
232 } else { 232 } else {
233 output.append(token); // Step 9 233 output.append(token); // Step 9
234 } 234 }
235 } 235 }
236 236
237 return output.toString(); 237 return output.toString();
238 } 238 }
239 239
240 } // namespace WebCore 240 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/CustomElementException.cpp ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698