Changeset 29427 in webkit
- Timestamp:
- Jan 11, 2008, 9:50:36 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r29425 r29427 1 2008-01-11 Anyang Ren <anyang.ren@gmail.com> 2 3 Reviewed by Darin Adler. 4 5 Add a new regression test for 6 http://bugs.webkit.org/show_bug.cgi?id=15960 7 The view source mode should skip an empty attribute value only if 8 the attribute name is not followed by an equal sign (=). 9 10 * fast/frames/resources/viewsource-frame-1.html: Added. 11 * fast/frames/viewsource-empty-attribute-value-expected.txt: Added. 12 * fast/frames/viewsource-empty-attribute-value.html: Added. 13 1 14 2008-01-11 Cameron Zwarich <cwzwarich@uwaterloo.ca> 2 15 -
trunk/WebCore/ChangeLog
r29426 r29427 1 2008-01-11 Anyang Ren <anyang.ren@gmail.com> 2 3 Reviewed by Darin Adler. 4 5 http://bugs.webkit.org/show_bug.cgi?id=15960 6 The view source mode should skip an empty attribute value only if 7 the attribute name is not followed by an equal sign (=). 8 9 Test: fast/frames/viewsource-empty-attribute-value.html 10 11 * html/HTMLViewSourceDocument.cpp: 12 (WebCore::HTMLViewSourceDocument::addViewSourceToken): 13 1 14 2008-01-11 Sylvain Pasche <sylvain.pasche@gmail.com> 2 15 -
trunk/WebCore/html/HTMLViewSourceDocument.cpp
r21704 r29427 129 129 unsigned begin = 0; 130 130 unsigned currAttr = 0; 131 Attribute* attr = 0; 131 132 for (unsigned i = 0; i < size; i++) { 132 133 if (guide->at(i) == 'a' || guide->at(i) == 'x' || guide->at(i) == 'v') { … … 136 137 begin = i + 1; 137 138 138 if (token->attrs && currAttr < token->attrs->length()) { 139 if (guide->at(i) == 'a') { 140 if (token->attrs && currAttr < token->attrs->length()) 141 attr = token->attrs->attributeItem(currAttr++); 142 else 143 attr = 0; 144 } 145 if (attr) { 139 146 if (guide->at(i) == 'a') { 140 Attribute* attr = token->attrs->attributeItem(currAttr);141 147 String name = attr->name().toString(); 142 148 if (doctype) … … 148 154 m_current = static_cast<Element*>(m_current->parent()); 149 155 } 150 if (attr->value().isNull() || attr->value().isEmpty())151 currAttr++;152 156 } else { 153 Attribute* attr = token->attrs->attributeItem(currAttr);154 157 String value = attr->value().domString(); 155 158 if (doctype) … … 165 168 m_current = static_cast<Element*>(m_current->parent()); 166 169 } 167 currAttr++;168 170 } 169 171 }
Note:
See TracChangeset
for help on using the changeset viewer.