| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |