Changeset 30952 in webkit
- Timestamp:
- Mar 10, 2008, 9:42:14 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r30938 r30952 1 2008-03-10 Justin Garcia <justin.garcia@apple.com> 2 3 Reviewed by Sam. 4 5 <rdar://problem/5779984> REGRESSION (r30391): GMail: Safari won't display the Edit Link dialog 6 7 * editing/pasteboard/5780697-2-expected.txt: Added. 8 * editing/pasteboard/5780697-2.html: Added. 9 * editing/selection/5779984-1-expected.txt: Added. 10 * editing/selection/5779984-1.html: Added. 11 1 12 2008-03-10 Sam Weinig <sam@webkit.org> 2 13 -
trunk/WebCore/ChangeLog
r30951 r30952 1 2008-03-10 Justin Garcia <justin.garcia@apple.com> 2 3 Reviewed by Sam. 4 5 <rdar://problem/5779984> REGRESSION (r30391): GMail: Safari won't display the Edit Link dialog 6 7 * bindings/js/JSCSSStyleDeclarationCustom.cpp: 8 (WebCore::hasCSSPropertyNamePrefix): Fixed a typo. The code was only 9 comparing the first character of the prefix to the first character 10 of the property name. 11 1 12 2008-03-10 Andre Boule <aboule@apple.com> 2 13 -
trunk/WebCore/bindings/js/JSCSSStyleDeclarationCustom.cpp
r30942 r30952 42 42 // Check for a CSS prefix. 43 43 // Passed prefix is all lowercase. 44 // First character sof property name may be upper or lowercase.44 // First character of property name may be upper or lowercase. 45 45 // Other characters in the prefix within the property name must be lowercase. 46 46 // The prefix within the property name must be followed by a capital letter. … … 62 62 if (!prefix[i]) 63 63 return isASCIIUpper(propertyName.data()[i]); 64 if (propertyName.data()[ 0] != prefix[0])64 if (propertyName.data()[i] != prefix[i]) 65 65 return false; 66 66 }
Note:
See TracChangeset
for help on using the changeset viewer.