-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
Loading status checks…
Fix stylesheet ordering + Background implicit transparent
1 parent
5a30a36
commit 6173276
Showing
10 changed files
with
75 additions
and
68 deletions.
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
6 changes: 1 addition & 5 deletions
6
Spec/src/main/java/com/github/webicitybrowser/spec/css/selectors/ComplexSelector.java
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,5 @@ | ||
| package com.github.webicitybrowser.spec.css.selectors; | ||
|
|
||
| public interface ComplexSelector extends ComplexSelectorPart { | ||
|
|
||
| ComplexSelectorPart[] getParts(); | ||
|
|
||
| SelectorSpecificity getSpecificity(); | ||
| public record ComplexSelector(ComplexSelectorPart[] parts, SelectorSpecificity specificity) implements ComplexSelectorPart { | ||
|
|
||
| } |
8 changes: 8 additions & 0 deletions
8
Spec/src/main/java/com/github/webicitybrowser/spec/css/selectors/SelectorOrderingTag.java
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| package com.github.webicitybrowser.spec.css.selectors; | ||
|
|
||
| import com.github.webicitybrowser.spec.css.selectors.SelectorSpecificity.Source; | ||
|
|
||
| // TODO: How will imported resources be handled? | ||
| public record SelectorOrderingTag(Source source, int documentOrder) { | ||
|
|
||
| } |
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
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