Changeset 210882 in webkit
- Timestamp:
- Jan 18, 2017, 1:35:30 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 4 added
- 3 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/fast/backgrounds/background-repeat-x-y-expected.html (added)
-
LayoutTests/fast/backgrounds/background-repeat-x-y-parse-expected.txt (added)
-
LayoutTests/fast/backgrounds/background-repeat-x-y-parse.html (added)
-
LayoutTests/fast/backgrounds/background-repeat-x-y.html (added)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/css/parser/CSSParserFastPaths.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r210881 r210882 1 2017-01-18 Myles C. Maxfield <mmaxfield@apple.com> 2 3 background-repeat-x doesn't work 4 https://bugs.webkit.org/show_bug.cgi?id=166997 5 6 Reviewed by Simon Fraser. 7 8 * fast/backgrounds/background-repeat-x-y-expected.html: Added. 9 * fast/backgrounds/background-repeat-x-y-parse-expected.txt: Added. 10 * fast/backgrounds/background-repeat-x-y-parse.html: Added. 11 * fast/backgrounds/background-repeat-x-y.html: Added. 12 1 13 2017-01-18 Yoav Weiss <yoav@yoav.ws> 2 14 -
trunk/Source/WebCore/ChangeLog
r210864 r210882 1 2017-01-18 Myles C. Maxfield <mmaxfield@apple.com> 2 3 background-repeat-x doesn't work 4 https://bugs.webkit.org/show_bug.cgi?id=166997 5 6 Reviewed by Simon Fraser. 7 8 During the creation of the new CSS parser, we accidentally forgot 9 to hook up background-repeat-x and background-repeat-y. 10 11 Tests: fast/backgrounds/background-repeat-x-y-parse.html 12 fast/backgrounds/background-repeat-x-y.html 13 14 * css/parser/CSSParserFastPaths.cpp: 15 (WebCore::CSSParserFastPaths::isKeywordPropertyID): 16 1 17 2017-01-18 Andy Estes <aestes@apple.com> 2 18 -
trunk/Source/WebCore/css/parser/CSSParserFastPaths.cpp
r210024 r210882 931 931 // case CSSPropertyAll: 932 932 933 // FIXME-NEWPARSER: Treat the following properties as keyword properties: 934 // case CSSPropertyBackgroundRepeatX: 935 // case CSSPropertyBackgroundRepeatY: 933 case CSSPropertyBackgroundRepeatX: 934 case CSSPropertyBackgroundRepeatY: 936 935 937 936 // FIXME-NEWPARSER: Add the following unprefixed properties:
Note:
See TracChangeset
for help on using the changeset viewer.