Skip to content

Commit

Permalink
Change fieldset's default padding to match the majority
Browse files Browse the repository at this point in the history
WebKit/Chromium/EdgeHTML have 0.75em left/right padding and
0.625em bottom padding. Gecko has it the other way around.

Tests: web-platform-tests/wpt#12501.

Fixes #3921.
  • Loading branch information
zcorpan authored and annevk committed Aug 16, 2018
1 parent fefb879 commit 34cc15a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -112277,9 +112277,9 @@ fieldset {
margin-inline-end: 2px;
border: groove 2px ThreeDFace;
padding-block-start: 0.35em;
padding-inline-end: 0.625em;
padding-block-end: 0.75em;
padding-inline-start: 0.625em;
padding-inline-end: 0.75em;
padding-block-end: 0.625em;
padding-inline-start: 0.75em;
min-width: min-content;
}

Expand Down

0 comments on commit 34cc15a

Please sign in to comment.