Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Issue 29901596: Issue 6493 - Ensure Firefox draws the "Block element" popup window (Closed)

Created:
Oct. 4, 2018, 3:29 p.m. by kzar
Modified:
Oct. 11, 2018, 10:43 a.m.
Visibility:
Public.

Description

Issue 6493 - Ensure Firefox draws the "Block element" popup window

Patch Set 1 #

Total comments: 3

Patch Set 2 : Avoid hardcoding the width again #

Total comments: 4

Patch Set 3 : Keep the window's width correct #

Total comments: 13

Patch Set 4 : Only resize for Firefox users, but don't worry about the 2px #

Unified diffs Side-by-side diffs Delta from patch set Stats (+6 lines, -0 lines) Patch
M lib/filterComposer.js View 1 2 3 1 chunk +6 lines, -0 lines 0 comments Download

Messages

Total messages: 18
kzar
Patch Set 1 https://codereview.adblockplus.org/29901596/diff/29901597/lib/filterComposer.js File lib/filterComposer.js (right): https://codereview.adblockplus.org/29901596/diff/29901597/lib/filterComposer.js#newcode195 lib/filterComposer.js:195: browser.windows.update(window.id, {width: 422}); For some reason ...
Oct. 4, 2018, 3:30 p.m. (2018-10-04 15:30:38 UTC) #1
Sebastian Noack
https://codereview.adblockplus.org/29901596/diff/29901597/lib/filterComposer.js File lib/filterComposer.js (right): https://codereview.adblockplus.org/29901596/diff/29901597/lib/filterComposer.js#newcode195 lib/filterComposer.js:195: browser.windows.update(window.id, {width: 422}); On 2018/10/04 15:30:37, kzar wrote: > ...
Oct. 4, 2018, 6:38 p.m. (2018-10-04 18:38:55 UTC) #2
Jon Sonesen
Hey, just wanted to say nice work here awesome catch and the fix seems pretty ...
Oct. 5, 2018, 9:34 p.m. (2018-10-05 21:34:10 UTC) #3
kzar
Patch Set 2 : Avoid hardcoding the width again > Hey, just wanted to say ...
Oct. 8, 2018, 2:50 p.m. (2018-10-08 14:50:14 UTC) #4
Sebastian Noack
https://codereview.adblockplus.org/29901596/diff/29904568/lib/filterComposer.js File lib/filterComposer.js (right): https://codereview.adblockplus.org/29901596/diff/29904568/lib/filterComposer.js#newcode195 lib/filterComposer.js:195: browser.windows.update(window.id, {width: window.width + 2}); Still the window ends ...
Oct. 8, 2018, 3:11 p.m. (2018-10-08 15:11:53 UTC) #5
kzar
https://codereview.adblockplus.org/29901596/diff/29904568/lib/filterComposer.js File lib/filterComposer.js (right): https://codereview.adblockplus.org/29901596/diff/29904568/lib/filterComposer.js#newcode195 lib/filterComposer.js:195: browser.windows.update(window.id, {width: window.width + 2}); On 2018/10/08 15:11:53, Sebastian ...
Oct. 8, 2018, 3:58 p.m. (2018-10-08 15:58:29 UTC) #6
Sebastian Noack
https://codereview.adblockplus.org/29901596/diff/29904568/lib/filterComposer.js File lib/filterComposer.js (right): https://codereview.adblockplus.org/29901596/diff/29904568/lib/filterComposer.js#newcode195 lib/filterComposer.js:195: browser.windows.update(window.id, {width: window.width + 2}); On 2018/10/08 15:58:28, kzar ...
Oct. 8, 2018, 4:07 p.m. (2018-10-08 16:07:22 UTC) #7
kzar
Patch Set 3 : Keep the window's width correct https://codereview.adblockplus.org/29901596/diff/29904568/lib/filterComposer.js File lib/filterComposer.js (right): https://codereview.adblockplus.org/29901596/diff/29904568/lib/filterComposer.js#newcode195 lib/filterComposer.js:195: ...
Oct. 8, 2018, 5:23 p.m. (2018-10-08 17:23:15 UTC) #8
Sebastian Noack
https://codereview.adblockplus.org/29901596/diff/29904573/lib/filterComposer.js File lib/filterComposer.js (right): https://codereview.adblockplus.org/29901596/diff/29904573/lib/filterComposer.js#newcode196 lib/filterComposer.js:196: () => { browser.windows.update(window.id, {width: window.width}); } On 2018/10/08 ...
Oct. 8, 2018, 5:33 p.m. (2018-10-08 17:33:56 UTC) #9
Jon Sonesen
https://codereview.adblockplus.org/29901596/diff/29904573/lib/filterComposer.js File lib/filterComposer.js (right): https://codereview.adblockplus.org/29901596/diff/29904573/lib/filterComposer.js#newcode196 lib/filterComposer.js:196: () => { browser.windows.update(window.id, {width: window.width}); } On 2018/10/08 ...
Oct. 8, 2018, 6:59 p.m. (2018-10-08 18:59:07 UTC) #10
Jon Sonesen
Oct. 8, 2018, 6:59 p.m. (2018-10-08 18:59:09 UTC) #11
kzar
https://codereview.adblockplus.org/29901596/diff/29904573/lib/filterComposer.js File lib/filterComposer.js (right): https://codereview.adblockplus.org/29901596/diff/29904573/lib/filterComposer.js#newcode196 lib/filterComposer.js:196: () => { browser.windows.update(window.id, {width: window.width}); } On 2018/10/08 ...
Oct. 9, 2018, 9:58 a.m. (2018-10-09 09:58:48 UTC) #12
Thomas Greiner
https://codereview.adblockplus.org/29901596/diff/29904573/lib/filterComposer.js File lib/filterComposer.js (right): https://codereview.adblockplus.org/29901596/diff/29904573/lib/filterComposer.js#newcode194 lib/filterComposer.js:194: // https://issues.adblockplus.org/ticket/6493 Since this issue is specific to Firefox, ...
Oct. 9, 2018, 11:43 a.m. (2018-10-09 11:43:16 UTC) #13
kzar
https://codereview.adblockplus.org/29901596/diff/29904573/lib/filterComposer.js File lib/filterComposer.js (right): https://codereview.adblockplus.org/29901596/diff/29904573/lib/filterComposer.js#newcode194 lib/filterComposer.js:194: // https://issues.adblockplus.org/ticket/6493 On 2018/10/09 11:43:15, Thomas Greiner wrote: > ...
Oct. 9, 2018, 11:48 a.m. (2018-10-09 11:48:28 UTC) #14
Thomas Greiner
https://codereview.adblockplus.org/29901596/diff/29904573/lib/filterComposer.js File lib/filterComposer.js (right): https://codereview.adblockplus.org/29901596/diff/29904573/lib/filterComposer.js#newcode194 lib/filterComposer.js:194: // https://issues.adblockplus.org/ticket/6493 On 2018/10/09 11:48:28, kzar wrote: > I ...
Oct. 9, 2018, noon (2018-10-09 12:00:27 UTC) #15
kzar
Patch Set 4 : Only resize for Firefox users, but don't worry about the 2px ...
Oct. 9, 2018, 12:16 p.m. (2018-10-09 12:16:37 UTC) #16
Thomas Greiner
LGTM
Oct. 9, 2018, 12:53 p.m. (2018-10-09 12:53:51 UTC) #17
Jon Sonesen
Oct. 9, 2018, 4:37 p.m. (2018-10-09 16:37:08 UTC) #18
LGTM

Powered by Google App Engine
This is Rietveld