WebKit Bugzilla
Attachment 359295 Details for
Bug 193506
: Initial value of min-width should be 0, not auto
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-193506-20190116125358.patch (text/plain), 1.49 KB, created by
zalan
on 2019-01-16 12:54:14 PST
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
zalan
Created:
2019-01-16 12:54:14 PST
Size:
1.49 KB
patch
obsolete
>Subversion Revision: 240036 >diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog >index 95528835fe8f226b4998c6a2f98c94ddb6afc3e8..9b41629e5f6fc93224f71f203ad0258e3b785e5a 100644 >--- a/Source/WebCore/ChangeLog >+++ b/Source/WebCore/ChangeLog >@@ -1,3 +1,15 @@ >+2019-01-16 Zalan Bujtas <zalan@apple.com> >+ >+ Min-width initial value is 0. >+ https://bugs.webkit.org/show_bug.cgi?id=193506 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ EWS testing. >+ >+ * rendering/style/RenderStyle.h: >+ (WebCore::RenderStyle::initialMinSize): >+ > 2019-01-16 Zalan Bujtas <zalan@apple.com> > > [LFC][Out-of-flow] Set used vertical margin values when top/height/bottom are non-auto. >diff --git a/Source/WebCore/rendering/style/RenderStyle.h b/Source/WebCore/rendering/style/RenderStyle.h >index 3d87fbd48dc6237ffe2c519a8b0c4524b7a41c95..525a5e61ef357431696886acff0f5b617aa1cb7e 100644 >--- a/Source/WebCore/rendering/style/RenderStyle.h >+++ b/Source/WebCore/rendering/style/RenderStyle.h >@@ -1490,7 +1490,7 @@ public: > static float initialLetterSpacing() { return 0; } > static Length initialWordSpacing() { return Length(Fixed); } > static Length initialSize() { return Length(); } >- static Length initialMinSize() { return Length(); } >+ static Length initialMinSize() { return Length(Fixed); } > static Length initialMaxSize() { return Length(Undefined); } > static Length initialOffset() { return Length(); } > static Length initialMargin() { return Length(Fixed); }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Flags:
ews-watchlist
:
commit-queue-
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 193506
: 359295 |
359299
|
359301
|
359302
|
359310
|
359327