mirror of
https://github.com/servo/servo.git
synced 2025-08-02 12:10:29 +01:00
Auto merge of #14399 - Manishearth:feat-offset-logical, r=SimonSapin
Support offset- logical properties I didn't realize that these map to the top/left/bottom/right physical properties. We can just implement them. r? @SimonSapin <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/14399) <!-- Reviewable:end -->
This commit is contained in:
commit
a88487f96a
3 changed files with 22 additions and 5 deletions
|
@ -321,6 +321,14 @@ partial interface CSSStyleDeclaration {
|
|||
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString right;
|
||||
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString left;
|
||||
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString bottom;
|
||||
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString offset-block-start;
|
||||
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString offsetBlockStart;
|
||||
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString offset-block-end;
|
||||
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString offsetBlockEnd;
|
||||
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString offset-inline-start;
|
||||
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString offsetInlineStart;
|
||||
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString offset-inline-end;
|
||||
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString offsetInlineEnd;
|
||||
|
||||
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString height;
|
||||
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString minHeight;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue