RESOLVED FIXED 200211
wpt/css/css-images/gradient/color-stops-parsing.html fails
https://bugs.webkit.org/show_bug.cgi?id=200211
Summary wpt/css/css-images/gradient/color-stops-parsing.html fails
Simon Fraser (smfr)
Reported 2019-07-28 15:54:28 PDT
wpt/css/css-images/gradient/color-stops-parsing.html fails once the crash (bug 200206) is fixed.
Attachments
Patch (8.19 KB, patch)
2019-07-28 16:34 PDT, Simon Fraser (smfr)
no flags
Patch (11.83 KB, patch)
2019-10-22 10:50 PDT, Simon Fraser (smfr)
no flags
Patch (14.81 KB, patch)
2019-10-22 14:12 PDT, Simon Fraser (smfr)
dino: review+
Simon Fraser (smfr)
Comment 1 2019-07-28 15:57:00 PDT
It fails on cases where there are multiple length values not separated by commas: linear-gradient(black, 25% 50%, white) Chrome and Firefox pass these tests. The relevant parsing code in Chrome is protected by RuntimeEnabledFeatures::MultipleColorStopPositionsEnabled() which was added via https://chromiumcodereview.appspot.com/2799793002/. I'm not sure if this is enabled by default in Chrome yet.
Florin Malita
Comment 2 2019-07-28 16:31:56 PDT
Simon Fraser (smfr)
Comment 3 2019-07-28 16:34:14 PDT
Simon Fraser (smfr)
Comment 4 2019-07-28 16:54:33 PDT
Comment on attachment 375050 [details] Patch This breaks a conic gradient test.
Simon Fraser (smfr)
Comment 5 2019-10-22 10:50:42 PDT
Simon Fraser (smfr)
Comment 6 2019-10-22 14:12:27 PDT
Said Abou-Hallawa
Comment 7 2019-10-22 14:26:36 PDT
Comment on attachment 381601 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=381601&action=review > Source/WebCore/css/CSSGradientValue.cpp:123 > + else if (i) { Is it possible that i == 0 && stop.isMidpoint == true? I think it should not. If this is correct then I would suggest replacing else if (i) by ASSERT(i).
Simon Fraser (smfr)
Comment 8 2019-10-22 14:33:39 PDT
(In reply to Said Abou-Hallawa from comment #7) > Comment on attachment 381601 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=381601&action=review > > > Source/WebCore/css/CSSGradientValue.cpp:123 > > + else if (i) { > > Is it possible that i == 0 && stop.isMidpoint == true? I think it should > not. If this is correct then I would suggest replacing else if (i) by > ASSERT(i). I don't think you can get a mid-point stop before a colorless stop. I could add the assertion.
Simon Fraser (smfr)
Comment 9 2019-10-22 20:51:53 PDT
Radar WebKit Bug Importer
Comment 10 2019-10-22 20:53:34 PDT
Note You need to log in before you can comment on or make changes to this bug.