Changeset 284863 in webkit
- Timestamp:
- Oct 26, 2021 5:16:35 AM (9 months ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
LayoutTests/imported/w3c/ChangeLog (modified) (1 diff)
-
LayoutTests/imported/w3c/web-platform-tests/css/css-shadow-parts/serialization-expected.txt (modified) (1 diff)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/css/CSSSelector.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/imported/w3c/ChangeLog
r284859 r284863 1 2021-10-26 Antti Koivisto <antti@apple.com> 2 3 Serialize :part() argument as identifier 4 https://bugs.webkit.org/show_bug.cgi?id=232297 5 6 Reviewed by Youenn Fablet. 7 8 * web-platform-tests/css/css-shadow-parts/serialization-expected.txt: 9 1 10 2021-10-26 Antti Koivisto <antti@apple.com> 2 11 -
trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-shadow-parts/serialization-expected.txt
r267650 r284863 1 1 2 FAIL Escape start parenthesis in ::part name. assert_equals: expected "::part(\\(foo)" but got "::part((foo)" 3 FAIL Escape start space in ::part name. assert_equals: expected "::part(bar\\ )" but got "::part(bar )" 2 PASS Escape start parenthesis in ::part name. 3 PASS Escape start space in ::part name. 4 4 PASS Collapse spaces in ::part names list. 5 5 -
trunk/Source/WebCore/ChangeLog
r284862 r284863 1 2021-10-26 Antti Koivisto <antti@apple.com> 2 3 Serialize :part() argument as identifier 4 https://bugs.webkit.org/show_bug.cgi?id=232297 5 6 Reviewed by Youenn Fablet. 7 8 WPT fix. 9 10 * css/CSSSelector.cpp: 11 (WebCore::CSSSelector::selectorText const): 12 1 13 2021-10-26 Youenn Fablet <youenn@apple.com> 2 14 -
trunk/Source/WebCore/css/CSSSelector.cpp
r281692 r284863 725 725 builder.append(' '); 726 726 isFirst = false; 727 builder.append(partName);727 serializeIdentifier(partName, builder); 728 728 } 729 729 builder.append(')');
Note: See TracChangeset
for help on using the changeset viewer.