Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Issue 2122193003: [Typed-OM] Add CSSTokenStreamValue (Closed)

Created:
4 years, 5 months ago by anthonyhkf
Modified:
4 years, 5 months ago
CC:
chromium-reviews, blink-reviews-style_chromium.org, blink-reviews-css, dglazkov+blink, apavlov+blink_chromium.org, darktears, blink-reviews, rwlbuis, rjwright
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

[Typed-OM] Add CSSTokenStreamValue Spec: https://drafts.css-houdini.org/css-typed-om/#csstokenstreamvalue In this CL, it only supports string value (instead of <string or CSSVariableReferenceValue>) BUG=545318 Committed: https://crrev.com/183c36161d9f0f580975c8be4b22464eaefa3542 Cr-Commit-Position: refs/heads/master@{#406781}

Patch Set 1 #

Total comments: 16

Patch Set 2 : Changed CSSValue type, remove unused stuffs #

Patch Set 3 : Added license header #

Total comments: 14

Patch Set 4 : Remove unused headers, renaming #

Total comments: 4

Patch Set 5 : Renamed functions #

Patch Set 6 : Add CSSTokenStreamValue to global interface listing #

Patch Set 7 : Add forEach method #

Patch Set 8 : Add constructor #

Total comments: 2

Patch Set 9 : Add test for CSSTokenStreamValue #

Messages

Total messages: 56 (35 generated)
anthonyhkf
4 years, 5 months ago (2016-07-07 04:19:22 UTC) #2
meade_UTC10
https://codereview.chromium.org/2122193003/diff/1/third_party/WebKit/Source/core/css/cssom/CSSStyleValue.h File third_party/WebKit/Source/core/css/cssom/CSSStyleValue.h (right): https://codereview.chromium.org/2122193003/diff/1/third_party/WebKit/Source/core/css/cssom/CSSStyleValue.h#newcode32 third_party/WebKit/Source/core/css/cssom/CSSStyleValue.h:32: TokenStreamType, These should be in alphabetical order (To before ...
4 years, 5 months ago (2016-07-07 05:48:02 UTC) #3
anthonyhkf
https://codereview.chromium.org/2122193003/diff/1/third_party/WebKit/Source/core/css/cssom/CSSStyleValue.h File third_party/WebKit/Source/core/css/cssom/CSSStyleValue.h (right): https://codereview.chromium.org/2122193003/diff/1/third_party/WebKit/Source/core/css/cssom/CSSStyleValue.h#newcode32 third_party/WebKit/Source/core/css/cssom/CSSStyleValue.h:32: TokenStreamType, On 2016/07/07 05:48:01, Eddy wrote: > These should ...
4 years, 5 months ago (2016-07-07 08:01:45 UTC) #5
meade_UTC10
lgtm https://codereview.chromium.org/2122193003/diff/40001/third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.cpp File third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.cpp (right): https://codereview.chromium.org/2122193003/diff/40001/third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.cpp#newcode63 third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.cpp:63: for (unsigned i = 0; i < m_listOfReferences.size(); ...
4 years, 5 months ago (2016-07-08 00:29:09 UTC) #7
meade_UTC10
Hey Shane! Could you please have a look since Tim is away?
4 years, 5 months ago (2016-07-11 07:02:44 UTC) #9
meade_UTC10
Anthony: Would be useful to have some notes in the description about what is still ...
4 years, 5 months ago (2016-07-11 07:03:45 UTC) #10
shans
On 2016/07/11 at 07:03:45, meade wrote: > Anthony: Would be useful to have some notes ...
4 years, 5 months ago (2016-07-11 22:18:11 UTC) #11
Timothy Loh
https://codereview.chromium.org/2122193003/diff/40001/third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.cpp File third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.cpp (right): https://codereview.chromium.org/2122193003/diff/40001/third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.cpp#newcode34 third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.cpp:34: bool next(ScriptState* scriptState, String& value, ExceptionState& exceptionState) override You ...
4 years, 5 months ago (2016-07-19 03:40:20 UTC) #17
anthonyhkf
https://codereview.chromium.org/2122193003/diff/40001/third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.cpp File third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.cpp (right): https://codereview.chromium.org/2122193003/diff/40001/third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.cpp#newcode34 third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.cpp:34: bool next(ScriptState* scriptState, String& value, ExceptionState& exceptionState) override On ...
4 years, 5 months ago (2016-07-19 03:55:15 UTC) #18
meade_UTC10
https://codereview.chromium.org/2122193003/diff/60001/third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.cpp File third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.cpp (right): https://codereview.chromium.org/2122193003/diff/60001/third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.cpp#newcode22 third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.cpp:22: bool next(ScriptState*, String& value, ExceptionState& exceptionState) override You're also ...
4 years, 5 months ago (2016-07-19 04:37:42 UTC) #20
meade_UTC10
Oh, also you'll need to update LayoutTests/http/tests/worklet/webexposed/global-interface-listing-paint-worklet-expected.txt and LayoutTests/webexposed/global-interface-listing-expected.txt LayoutTests/typedcssom/cssVariableReferenceValue.html is also failing (as discussed, ...
4 years, 5 months ago (2016-07-19 05:00:06 UTC) #22
anthonyhkf
On 2016/07/19 05:00:06, Eddy wrote: > Oh, also you'll need to update > LayoutTests/http/tests/worklet/webexposed/global-interface-listing-paint-worklet-expected.txt > ...
4 years, 5 months ago (2016-07-19 06:13:48 UTC) #25
meade_UTC10
lgtm
4 years, 5 months ago (2016-07-20 03:16:44 UTC) #34
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2122193003/140001
4 years, 5 months ago (2016-07-20 03:18:43 UTC) #40
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/221212)
4 years, 5 months ago (2016-07-20 03:29:30 UTC) #42
Timothy Loh
Test for the added class? https://codereview.chromium.org/2122193003/diff/140001/third_party/WebKit/LayoutTests/typedcssom/cssVariableReferenceValue.html File third_party/WebKit/LayoutTests/typedcssom/cssVariableReferenceValue.html (left): https://codereview.chromium.org/2122193003/diff/140001/third_party/WebKit/LayoutTests/typedcssom/cssVariableReferenceValue.html#oldcode1 third_party/WebKit/LayoutTests/typedcssom/cssVariableReferenceValue.html:1: <!DOCTYPE html> Did you ...
4 years, 5 months ago (2016-07-20 06:18:17 UTC) #43
anthonyhkf
https://codereview.chromium.org/2122193003/diff/60001/third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.cpp File third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.cpp (right): https://codereview.chromium.org/2122193003/diff/60001/third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.cpp#newcode22 third_party/WebKit/Source/core/css/cssom/CSSTokenStreamValue.cpp:22: bool next(ScriptState*, String& value, ExceptionState& exceptionState) override On 2016/07/19 ...
4 years, 5 months ago (2016-07-20 07:05:46 UTC) #46
Timothy Loh
ok lgtm
4 years, 5 months ago (2016-07-21 04:53:16 UTC) #49
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2122193003/160001
4 years, 5 months ago (2016-07-21 06:16:48 UTC) #52
commit-bot: I haz the power
Committed patchset #9 (id:160001)
4 years, 5 months ago (2016-07-21 06:21:11 UTC) #54
commit-bot: I haz the power
4 years, 5 months ago (2016-07-21 06:23:46 UTC) #56
Message was sent while issue was closed.
Patchset 9 (id:??) landed as
https://crrev.com/183c36161d9f0f580975c8be4b22464eaefa3542
Cr-Commit-Position: refs/heads/master@{#406781}

Powered by Google App Engine
This is Rietveld 408576698