RESOLVED FIXED 148052
Implement parsing for CSS will-change
https://bugs.webkit.org/show_bug.cgi?id=148052
Summary Implement parsing for CSS will-change
Simon Fraser (smfr)
Reported 2015-08-14 23:30:40 PDT
Implement parsing for CSS will-change
Attachments
Patch (44.19 KB, patch)
2015-08-14 23:40 PDT, Simon Fraser (smfr)
no flags
Patch (44.20 KB, patch)
2015-08-14 23:51 PDT, Simon Fraser (smfr)
dino: review+
Simon Fraser (smfr)
Comment 1 2015-08-14 23:40:17 PDT
Simon Fraser (smfr)
Comment 2 2015-08-14 23:51:01 PDT
Dean Jackson
Comment 3 2015-08-15 04:48:36 PDT
Comment on attachment 259084 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=259084&action=review This is the first time I've tried to review from an iPad. I hope it works. > Source/WebCore/rendering/style/WillChangeData.cpp:45 > +bool WillChangeData::containsContents() const Why don't we remember this as it is added/removed? > Source/WebCore/rendering/style/WillChangeData.h:60 > + CustomIdent, Why not call this property? What other idents could there be? If they are not properties then we'd probably make keywords for them like "contents" > LayoutTests/fast/css/will-change-parsing.html:32 > + shouldBe('testComputedStyle(";")', '"auto"'); You probably meant will-change:; but this is still good. > LayoutTests/fast/css/will-change-parsing.html:37 > + shouldBe('test("will-change: initial;")', '"initial"'); Need a test for will-change:will-change; > LayoutTests/fast/css/will-change-parsing.html:43 > + shouldBe('test("will-change: scroll-position, scroll-position;")', '"scroll-position, scroll-position"'); It's kind of silly that the computed style doesn't remove duplicates since they do not change behaviour for this property. > LayoutTests/fast/css/will-change-parsing.html:51 > + shouldBe('test("will-change: background, transform;")', '"background, transform"'); Need a test that is missing commas
Simon Fraser (smfr)
Comment 4 2015-08-15 10:44:28 PDT
> > Source/WebCore/rendering/style/WillChangeData.cpp:45 > > +bool WillChangeData::containsContents() const > > Why don't we remember this as it is added/removed? I'll do that as I start to use them. > > Source/WebCore/rendering/style/WillChangeData.h:60 > > + CustomIdent, > > Why not call this property? What other idents could there be? If they are > not properties then we'd probably make keywords for them like "contents" Changed it. > > LayoutTests/fast/css/will-change-parsing.html:32 > > + shouldBe('testComputedStyle(";")', '"auto"'); > > You probably meant will-change:; but this is still good. Fixed. > > LayoutTests/fast/css/will-change-parsing.html:37 > > + shouldBe('test("will-change: initial;")', '"initial"'); > > Need a test for will-change:will-change; Done (amusingly, Firefox fails this). > > LayoutTests/fast/css/will-change-parsing.html:43 > > + shouldBe('test("will-change: scroll-position, scroll-position;")', '"scroll-position, scroll-position"'); > > It's kind of silly that the computed style doesn't remove duplicates since > they do not change behaviour for this property. Agreed, but following other UAs and the spec here. > > LayoutTests/fast/css/will-change-parsing.html:51 > > + shouldBe('test("will-change: background, transform;")', '"background, transform"'); > > Need a test that is missing commas Added.
Simon Fraser (smfr)
Comment 5 2015-08-15 11:11:28 PDT
Note You need to log in before you can comment on or make changes to this bug.