Description was changed from ========== pageRULe WIP BUG= ========== to ========== PageRule should not serialize ...
4 years, 10 months ago
(2016-01-28 16:26:39 UTC)
#1
Description was changed from
==========
pageRULe WIP
BUG=
==========
to
==========
PageRule should not serialize @page in selectorText
According to the spec [1]:
The selectorText attribute, on getting, must return the result
of serializing the associated list of CSS page selectors.
[1] https://drafts.csswg.org/cssom/#dom-csspagerule-selectortext
BUG=582098
==========
rwlbuis
Description was changed from ========== PageRule should not serialize @page in selectorText According to the ...
4 years, 10 months ago
(2016-01-28 16:27:07 UTC)
#2
Description was changed from
==========
PageRule should not serialize @page in selectorText
According to the spec [1]:
The selectorText attribute, on getting, must return the result
of serializing the associated list of CSS page selectors.
[1] https://drafts.csswg.org/cssom/#dom-csspagerule-selectortext
BUG=582098
==========
to
==========
PageRule should not serialize @page in selectorText
According to the spec [1]:
The selectorText attribute, on getting, must return the result
of serializing the associated list of CSS page selectors.
Behavior matches Firefox.
[1] https://drafts.csswg.org/cssom/#dom-csspagerule-selectortext
BUG=582098
==========
4 years, 10 months ago
(2016-01-28 16:27:35 UTC)
#4
PTAL.
rune
How about adding a CSSPageRuleTest.cpp where you test the selector serialization? https://codereview.chromium.org/1637273003/diff/60001/third_party/WebKit/Source/core/css/CSSPageRule.cpp File third_party/WebKit/Source/core/css/CSSPageRule.cpp (left): ...
4 years, 10 months ago
(2016-01-28 18:15:47 UTC)
#5
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1637273003/90001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1637273003/90001
4 years, 10 months ago
(2016-01-29 10:48:08 UTC)
#9
Try jobs failed on following builders: win_chromium_compile_dbg_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_compile_dbg_ng/builds/138121)
4 years, 10 months ago
(2016-01-29 11:57:04 UTC)
#11
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1637273003/110001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1637273003/110001
4 years, 10 months ago
(2016-01-29 14:57:26 UTC)
#14
Description was changed from ========== PageRule should not serialize @page in selectorText According to the ...
4 years, 10 months ago
(2016-01-29 16:24:41 UTC)
#15
Message was sent while issue was closed.
Description was changed from
==========
PageRule should not serialize @page in selectorText
According to the spec [1]:
The selectorText attribute, on getting, must return the result
of serializing the associated list of CSS page selectors.
Behavior matches Firefox.
[1] https://drafts.csswg.org/cssom/#dom-csspagerule-selectortext
BUG=582098
==========
to
==========
PageRule should not serialize @page in selectorText
According to the spec [1]:
The selectorText attribute, on getting, must return the result
of serializing the associated list of CSS page selectors.
Behavior matches Firefox.
[1] https://drafts.csswg.org/cssom/#dom-csspagerule-selectortext
BUG=582098
==========
commit-bot: I haz the power
Committed patchset #7 (id:110001)
4 years, 10 months ago
(2016-01-29 16:24:41 UTC)
#16
Message was sent while issue was closed.
Committed patchset #7 (id:110001)
commit-bot: I haz the power
Description was changed from ========== PageRule should not serialize @page in selectorText According to the ...
4 years, 10 months ago
(2016-01-29 16:26:01 UTC)
#17
Message was sent while issue was closed.
Description was changed from
==========
PageRule should not serialize @page in selectorText
According to the spec [1]:
The selectorText attribute, on getting, must return the result
of serializing the associated list of CSS page selectors.
Behavior matches Firefox.
[1] https://drafts.csswg.org/cssom/#dom-csspagerule-selectortext
BUG=582098
==========
to
==========
PageRule should not serialize @page in selectorText
According to the spec [1]:
The selectorText attribute, on getting, must return the result
of serializing the associated list of CSS page selectors.
Behavior matches Firefox.
[1] https://drafts.csswg.org/cssom/#dom-csspagerule-selectortext
BUG=582098
Committed: https://crrev.com/2947176ac96b969ae7e0f119cc3e082c115d4e4e
Cr-Commit-Position: refs/heads/master@{#372355}
==========
commit-bot: I haz the power
Patchset 7 (id:??) landed as https://crrev.com/2947176ac96b969ae7e0f119cc3e082c115d4e4e Cr-Commit-Position: refs/heads/master@{#372355}
4 years, 10 months ago
(2016-01-29 16:26:02 UTC)
#18
https://codereview.chromium.org/1637273003/diff/110001/third_party/WebKit/Source/core/css/CSSPageRuleTest.cpp File third_party/WebKit/Source/core/css/CSSPageRuleTest.cpp (right): https://codereview.chromium.org/1637273003/diff/110001/third_party/WebKit/Source/core/css/CSSPageRuleTest.cpp#newcode20 third_party/WebKit/Source/core/css/CSSPageRuleTest.cpp:20: if (helper.cssRules()) { If this ends up null for ...
4 years, 10 months ago
(2016-01-31 23:54:24 UTC)
#19
Message was sent while issue was closed.
https://codereview.chromium.org/1637273003/diff/110001/third_party/WebKit/Sou...
File third_party/WebKit/Source/core/css/CSSPageRuleTest.cpp (right):
https://codereview.chromium.org/1637273003/diff/110001/third_party/WebKit/Sou...
third_party/WebKit/Source/core/css/CSSPageRuleTest.cpp:20: if
(helper.cssRules()) {
If this ends up null for some reason, then the test will still pass. You can
ASSERT it isn't null to safely check this (ASSERTs will stop the test if they
fail, while EXPECTs will keep going), although I don't think anyone really pays
much attention to whether people correctly use ASSERT or EXPECT.
I'm not sure the purpose of the if check below either, it seems like you're
already assuming the rule is non-null by dereferencing it before.
Issue 1637273003: PageRule should not serialize @page in selectorText
(Closed)
Created 4 years, 11 months ago by rwlbuis
Modified 4 years, 10 months ago
Reviewers: rune, Timothy Loh
Base URL: https://chromium.googlesource.com/chromium/src.git@master
Comments: 5