WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED INVALID
120626
[CSS Masking] -webkit-mask-origin should have an initial value of padding-box
https://bugs.webkit.org/show_bug.cgi?id=120626
Summary
[CSS Masking] -webkit-mask-origin should have an initial value of padding-box
Andrei Parvu
Reported
2013-09-03 03:49:22 PDT
As the spec [1] says, the mask-origin property should have an initial value of padding-box. [1] -
https://dvcs.w3.org/hg/FXTF/raw-file/default/masking/index.html#the-mask-origin
Attachments
Patch
(3.21 KB, patch)
2013-09-03 03:55 PDT
,
Andrei Parvu
no flags
Details
Formatted Diff
Diff
Archive of layout-test-results from webkit-ews-14 for mac-mountainlion-wk2
(1.34 MB, application/zip)
2013-09-03 04:27 PDT
,
Build Bot
no flags
Details
Archive of layout-test-results from webkit-ews-07 for mac-mountainlion
(1.05 MB, application/zip)
2013-09-03 09:05 PDT
,
Build Bot
no flags
Details
Patch
(7.88 KB, patch)
2013-09-16 00:50 PDT
,
Andrei Parvu
no flags
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Andrei Parvu
Comment 1
2013-09-03 03:55:19 PDT
Created
attachment 210349
[details]
Patch
Build Bot
Comment 2
2013-09-03 04:27:46 PDT
Comment on
attachment 210349
[details]
Patch
Attachment 210349
[details]
did not pass mac-wk2-ews (mac-wk2): Output:
http://webkit-queues.appspot.com/results/1693221
New failing tests: editing/unsupported-content/table-delete-003.html editing/unsupported-content/list-type-before.html svg/css/getComputedStyle-basic.xhtml fast/css/getComputedStyle/computed-style.html editing/unsupported-content/table-type-before.html editing/unsupported-content/table-delete-002.html editing/unsupported-content/list-delete-001.html fast/css/getComputedStyle/computed-style-without-renderer.html editing/unsupported-content/list-type-after.html editing/unsupported-content/list-delete-003.html css3/calc/simple-composited-mask.html editing/unsupported-content/table-type-after.html editing/unsupported-content/table-delete-001.html
Build Bot
Comment 3
2013-09-03 04:27:48 PDT
Created
attachment 210350
[details]
Archive of layout-test-results from webkit-ews-14 for mac-mountainlion-wk2 The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews. Bot: webkit-ews-14 Port: mac-mountainlion-wk2 Platform: Mac OS X 10.8.4
Dirk Schulze
Comment 4
2013-09-03 08:31:39 PDT
Comment on
attachment 210349
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=210349&action=review
> Source/WebCore/rendering/style/FillLayer.h:180 > - static EFillBox initialFillOrigin(EFillLayerType type) { return type == BackgroundFillLayer ? PaddingFillBox : BorderFillBox; } > + static EFillBox initialFillOrigin(EFillLayerType) { return PaddingFillBox; }
Well, this code explicitly checked for BackgroundFillLayer. If it is background, then it sets padding-box. Obviously the type can be different and then it is BorderFillBox. I assume that the other case is -webkit-background, which must stay as it is. If it is incorrect for masking, you may add MaskFillLayer to the condition (does MaskFillLayer even exist?)
Build Bot
Comment 5
2013-09-03 09:05:28 PDT
Comment on
attachment 210349
[details]
Patch
Attachment 210349
[details]
did not pass mac-ews (mac): Output:
http://webkit-queues.appspot.com/results/1690274
New failing tests: svg/css/getComputedStyle-basic.xhtml fast/css/getComputedStyle/computed-style.html css3/calc/simple-composited-mask.html fast/css/getComputedStyle/computed-style-without-renderer.html
Build Bot
Comment 6
2013-09-03 09:05:31 PDT
Created
attachment 210378
[details]
Archive of layout-test-results from webkit-ews-07 for mac-mountainlion The attached test failures were seen while running run-webkit-tests on the mac-ews. Bot: webkit-ews-07 Port: mac-mountainlion Platform: Mac OS X 10.8.4
Andrei Parvu
Comment 7
2013-09-03 10:05:29 PDT
(In reply to
comment #4
)
> (From update of
attachment 210349
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=210349&action=review
> > > Source/WebCore/rendering/style/FillLayer.h:180 > > - static EFillBox initialFillOrigin(EFillLayerType type) { return type == BackgroundFillLayer ? PaddingFillBox : BorderFillBox; } > > + static EFillBox initialFillOrigin(EFillLayerType) { return PaddingFillBox; } > > Well, this code explicitly checked for BackgroundFillLayer. If it is background, then it sets padding-box. Obviously the type can be different and then it is BorderFillBox. I assume that the other case is -webkit-background, which must stay as it is. If it is incorrect for masking, you may add MaskFillLayer to the condition (does MaskFillLayer even exist?)
EFillLayerType can be only BackgroundFillLayer or MaskFillLayer. Some of those tests are failing because they are presuming that mask-origin will is defaulted to border-box.
Dirk Schulze
Comment 8
2013-09-03 10:20:45 PDT
(In reply to
comment #7
)
> (In reply to
comment #4
) > > (From update of
attachment 210349
[details]
[details]) > > View in context:
https://bugs.webkit.org/attachment.cgi?id=210349&action=review
> > > > > Source/WebCore/rendering/style/FillLayer.h:180 > > > - static EFillBox initialFillOrigin(EFillLayerType type) { return type == BackgroundFillLayer ? PaddingFillBox : BorderFillBox; } > > > + static EFillBox initialFillOrigin(EFillLayerType) { return PaddingFillBox; } > > > > Well, this code explicitly checked for BackgroundFillLayer. If it is background, then it sets padding-box. Obviously the type can be different and then it is BorderFillBox. I assume that the other case is -webkit-background, which must stay as it is. If it is incorrect for masking, you may add MaskFillLayer to the condition (does MaskFillLayer even exist?) > > EFillLayerType can be only BackgroundFillLayer or MaskFillLayer. Some of those tests are failing because they are presuming that mask-origin will is defaulted to border-box.
Hmm. I am not sure if we should fix it now, or when unprefixing then. David do you know if there is content that relies on -webkit-mask-origin: border-bx as initial value?
Andrei Parvu
Comment 9
2013-09-16 00:50:13 PDT
Created
attachment 211743
[details]
Patch
Andrei Parvu
Comment 10
2013-09-16 04:43:11 PDT
(In reply to
comment #9
)
> Created an attachment (id=211743) [details] > Patch
Just saw that the editor's draft of the spec has changed [1]: mask-origin now has an initial value border-box, so no need for this patch anymore. [1] -
http://dev.w3.org/fxtf/masking/#changes
Dirk Schulze
Comment 11
2013-09-17 01:30:01 PDT
(In reply to
comment #10
)
> (In reply to
comment #9
) > > Created an attachment (id=211743) [details] [details] > > Patch > > Just saw that the editor's draft of the spec has changed [1]: mask-origin now has an initial value border-box, so no need for this patch anymore. > > [1] -
http://dev.w3.org/fxtf/masking/#changes
Right, also changes like that should go into the unprefixed version on landing. Otherwise we break features that rely on the behavior.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug