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

Issue 2387003002: [GeometryInterface] remove scaleNonUniform* method. (Closed)

Created:
4 years, 2 months ago by Hwanseung Lee
Modified:
4 years, 2 months ago
CC:
blink-reviews, blink-reviews-dom_chromium.org, chromium-reviews, dglazkov+blink, eae+blinkwatch, Hwanseung Lee(hs1217.lee), rwlbuis, sof
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

[GeometryInterface] remove scaleNonUniform* method. parameter of scale* method was modified according to spec. scaleNonUniform* method do not need any more. spec list: https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-scale https://drafts.fxtf.org/geometry/#dom-dommatrix-scaleself BUG=388780, 645887 Committed: https://crrev.com/89064304d942709fa79a51b51e540317f4bb7d9b Cr-Commit-Position: refs/heads/master@{#425588}

Patch Set 1 #

Patch Set 2 : update test #

Patch Set 3 : add test. #

Total comments: 2

Patch Set 4 : [GeometryInterface] remove scaleNonUniform* method. #

Total comments: 4

Patch Set 5 : remove function in global-interface-listing-expected.txt #

Patch Set 6 : add test. #

Patch Set 7 : add test. #

Total comments: 4

Patch Set 8 : modify test. #

Total comments: 1

Patch Set 9 : fix a typo. #

Patch Set 10 : rebase orgin. #

Patch Set 11 : rebase origin #

Unified diffs Side-by-side diffs Delta from patch set Stats (+131 lines, -85 lines) Patch
M third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-matrix-scale.html View 1 2 3 4 5 6 7 8 2 chunks +81 lines, -27 lines 0 comments Download
M third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt View 1 2 3 4 5 6 7 8 9 2 chunks +0 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DOMMatrix.h View 1 2 3 4 5 6 7 8 9 1 chunk +7 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DOMMatrix.cpp View 1 2 3 4 5 6 7 8 9 2 chunks +15 lines, -15 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DOMMatrix.idl View 1 2 3 4 5 6 7 8 9 1 chunk +5 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h View 1 2 3 4 5 6 7 8 9 1 chunk +7 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.cpp View 1 2 3 4 5 6 7 8 9 2 chunks +11 lines, -11 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.idl View 1 2 3 4 5 6 7 8 9 1 chunk +5 lines, -8 lines 0 comments Download

Messages

Total messages: 37 (17 generated)
Hwanseung Lee
@dominicc, zino PTAL, thank you.
4 years, 2 months ago (2016-10-03 09:39:13 UTC) #3
zino
https://codereview.chromium.org/2387003002/diff/40001/third_party/WebKit/Source/core/dom/DOMMatrix.cpp File third_party/WebKit/Source/core/dom/DOMMatrix.cpp (right): https://codereview.chromium.org/2387003002/diff/40001/third_party/WebKit/Source/core/dom/DOMMatrix.cpp#newcode135 third_party/WebKit/Source/core/dom/DOMMatrix.cpp:135: return scaleNonUniformSelf(sx, sy, sz, ox, oy, oz); Why did ...
4 years, 2 months ago (2016-10-04 14:24:09 UTC) #4
Hwanseung Lee
https://codereview.chromium.org/2387003002/diff/40001/third_party/WebKit/Source/core/dom/DOMMatrix.cpp File third_party/WebKit/Source/core/dom/DOMMatrix.cpp (right): https://codereview.chromium.org/2387003002/diff/40001/third_party/WebKit/Source/core/dom/DOMMatrix.cpp#newcode135 third_party/WebKit/Source/core/dom/DOMMatrix.cpp:135: return scaleNonUniformSelf(sx, sy, sz, ox, oy, oz); On 2016/10/04 ...
4 years, 2 months ago (2016-10-04 22:21:53 UTC) #5
dominicc (has gone to gerrit)
Some feedback inline. Could you write up a plan to upstream these tests to https://github.com/w3c/web-platform-tests/ ...
4 years, 2 months ago (2016-10-05 04:23:50 UTC) #8
zino
On 2016/10/05 04:23:50, dominicc wrote: > Some feedback inline. > > Could you write up ...
4 years, 2 months ago (2016-10-05 04:25:07 UTC) #9
zino
On 2016/10/05 04:25:07, zino wrote: > On 2016/10/05 04:23:50, dominicc wrote: > > Some feedback ...
4 years, 2 months ago (2016-10-05 04:27:19 UTC) #10
Hwanseung Lee
@dominicc PTAL. could you review again? i did add tests taking sx, sy(different with sx). ...
4 years, 2 months ago (2016-10-06 14:19:13 UTC) #13
dominicc (has gone to gerrit)
Very close, sorry for the slow feedback. Just one more thing, maybe instead of var ...
4 years, 2 months ago (2016-10-14 08:16:00 UTC) #14
Hwanseung Lee
@dominicc your thoughts is correct. assert_equal dose === using sameValue function(). (https://cs.chromium.org/chromium/src/third_party/WebKit/LayoutTests/resources/testharness.js?q=testharness.js&sq=package:chromium&dr=C&l=872) please review again. ...
4 years, 2 months ago (2016-10-15 01:16:43 UTC) #15
dominicc (has gone to gerrit)
lgtm LGTM modulo one nit inline. https://codereview.chromium.org/2387003002/diff/140001/third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-matrix-scale.html File third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-matrix-scale.html (right): https://codereview.chromium.org/2387003002/diff/140001/third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-matrix-scale.html#newcode13 third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-matrix-scale.html:13: assert_not_equals(result, matrix, 'result ...
4 years, 2 months ago (2016-10-16 08:48:36 UTC) #16
Hwanseung Lee
On 2016/10/16 08:48:36, dominicc wrote: > lgtm > > LGTM modulo one nit inline. > ...
4 years, 2 months ago (2016-10-16 08:54:59 UTC) #17
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/2387003002/160001
4 years, 2 months ago (2016-10-16 08:55:25 UTC) #20
commit-bot: I haz the power
Exceeded global retry quota
4 years, 2 months ago (2016-10-16 11:16:32 UTC) #22
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/2387003002/160001
4 years, 2 months ago (2016-10-16 11:17:32 UTC) #24
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/282174)
4 years, 2 months ago (2016-10-16 11:21:42 UTC) #26
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/2387003002/160001
4 years, 2 months ago (2016-10-16 11:24:52 UTC) #28
commit-bot: I haz the power
Exceeded global retry quota
4 years, 2 months ago (2016-10-16 11:32:29 UTC) #30
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/2387003002/200001
4 years, 2 months ago (2016-10-16 11:38:59 UTC) #33
commit-bot: I haz the power
Committed patchset #11 (id:200001)
4 years, 2 months ago (2016-10-16 12:56:09 UTC) #35
commit-bot: I haz the power
4 years, 2 months ago (2016-10-16 12:58:21 UTC) #37
Message was sent while issue was closed.
Patchset 11 (id:??) landed as
https://crrev.com/89064304d942709fa79a51b51e540317f4bb7d9b
Cr-Commit-Position: refs/heads/master@{#425588}

Powered by Google App Engine
This is Rietveld 408576698