| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 static bool isCharsetSpecifyingNode(const Node& node) | 71 static bool isCharsetSpecifyingNode(const Node& node) |
| 72 { | 72 { |
| 73 if (!node.isHTMLElement()) | 73 if (!node.isHTMLElement()) |
| 74 return false; | 74 return false; |
| 75 | 75 |
| 76 const HTMLElement& element = toHTMLElement(node); | 76 const HTMLElement& element = toHTMLElement(node); |
| 77 if (!element.hasTagName(HTMLNames::metaTag)) | 77 if (!element.hasTagName(HTMLNames::metaTag)) |
| 78 return false; | 78 return false; |
| 79 HTMLAttributeList attributes; | 79 HTMLAttributeList attributes; |
| 80 if (element.hasAttributes()) { | 80 if (element.hasAttributes()) { |
| 81 for (unsigned i = 0; i < element.attributeCount(); ++i) { | 81 unsigned attributeCount = element.attributeCount(); |
| 82 for (unsigned i = 0; i < attributeCount; ++i) { |
| 82 const Attribute* attribute = element.attributeItem(i); | 83 const Attribute* attribute = element.attributeItem(i); |
| 83 // FIXME: We should deal appropriately with the attribute if they ha
ve a namespace. | 84 // FIXME: We should deal appropriately with the attribute if they ha
ve a namespace. |
| 84 attributes.append(std::make_pair(attribute->name().localName(), attr
ibute->value().string())); | 85 attributes.append(std::make_pair(attribute->name().localName(), attr
ibute->value().string())); |
| 85 } | 86 } |
| 86 } | 87 } |
| 87 WTF::TextEncoding textEncoding = encodingFromMetaAttributes(attributes); | 88 WTF::TextEncoding textEncoding = encodingFromMetaAttributes(attributes); |
| 88 return textEncoding.isValid(); | 89 return textEncoding.isValid(); |
| 89 } | 90 } |
| 90 | 91 |
| 91 static bool shouldIgnoreElement(const Element& element) | 92 static bool shouldIgnoreElement(const Element& element) |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 if (iter != m_blankFrameURLs.end()) | 380 if (iter != m_blankFrameURLs.end()) |
| 380 return iter->value; | 381 return iter->value; |
| 381 String url = "wyciwyg://frame/" + String::number(m_blankFrameCounter++); | 382 String url = "wyciwyg://frame/" + String::number(m_blankFrameCounter++); |
| 382 KURL fakeURL(ParsedURLString, url); | 383 KURL fakeURL(ParsedURLString, url); |
| 383 m_blankFrameURLs.add(frame, fakeURL); | 384 m_blankFrameURLs.add(frame, fakeURL); |
| 384 | 385 |
| 385 return fakeURL; | 386 return fakeURL; |
| 386 } | 387 } |
| 387 | 388 |
| 388 } | 389 } |
| OLD | NEW |