Changeset 124299 in webkit
- Timestamp:
- Jul 31, 2012, 10:02:06 PM (14 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
html/ColorInputType.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r124297 r124299 1 2012-07-31 Keishi Hattori <keishi@webkit.org> 2 3 ColorInputType::typeMismatchFor is returning the opposite bool 4 https://bugs.webkit.org/show_bug.cgi?id=92836 5 6 Reviewed by Kent Tamura. 7 8 No new tests. Covered by color-suggestion-picker-appearance.html. 9 10 * html/ColorInputType.cpp: 11 (WebCore::ColorInputType::typeMismatchFor): 12 1 13 2012-07-31 Douglas Stockwell <dstockwell@chromium.org> 2 14 -
trunk/Source/WebCore/html/ColorInputType.cpp
r123997 r124299 169 169 bool ColorInputType::typeMismatchFor(const String& value) const 170 170 { 171 return isValidColorString(value);171 return !isValidColorString(value); 172 172 } 173 173
Note:
See TracChangeset
for help on using the changeset viewer.