Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[css-ui] Restrict default-button CSS appearance value to useSystemApp…
…earance https://bugs.webkit.org/show_bug.cgi?id=240391 Reviewed by Aditya Keerthi. This appearance value renders a button in its highlighted state to designate a button that is activated by default on macOS. The most important reason to keep it around is for internal macOS apps, so we restrict it to webviews with useSystemAppearance. * LayoutTests/editing/deleting/insert-in-orphaned-selection-crash.html: * LayoutTests/editing/deleting/insert-in-orphaned-selection-crash-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/css/css-ui/appearance-cssom-001-expected.txt: * LayoutTests/platform/gtk/imported/w3c/web-platform-tests/css/css-ui/appearance-cssom-001-expected.txt: * Source/WebCore/css/CSSProperties.json: * Source/WebCore/css/parser/CSSParserFastPaths.cpp: (WebCore::CSSParserFastPaths::isValidKeywordPropertyAndValue): * Source/WebInspectorUI/UserInterface/External/CSSDocumentation/CSSDocumentation-overrides.json: * Source/WebInspectorUI/UserInterface/External/CSSDocumentation/CSSDocumentation.js: Canonical link: https://commits.webkit.org/250871@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@294647 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
8 changed files
with
10 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -1,3 +1,2 @@ | ||
| CONSOLE MESSAGE: The test PASS if it does not CRASH. | ||
| CONSOLE MESSAGE: NotFoundError: The object can not be found here. | ||
|
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -1,5 +1,5 @@ | ||
| <style> | ||
| * { -webkit-appearance:default-button; } | ||
| * { -webkit-appearance: button; } | ||
| tr { height: 10px; } | ||
| td { width: 100px; height: 100px; } | ||
| </style> | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -5164,7 +5164,6 @@ | ||
| "push-button", | ||
| "square-button", | ||
| "button", | ||
| "default-button", | ||
| "listbox", | ||
| "media-fullscreen-volume-slider", | ||
| "media-fullscreen-volume-slider-thumb", | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters