function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
background(255);
noFill()
strokeWeight(50)
stroke(0)
ellipse(width/2, height/2, 180, 125)
}

Welcome! 馃憢 Thanks for opening your first issue here! And to ensure the community is able to respond to your issue, be sure to follow the issue template if you haven't already.
I copied it to the web editor
https://editor.p5js.org/micuat/sketches/NQ8ddPSR3
(please do so next time so we can save some time!)
@elladahan I'm wondering if you still see this behavior if you make your ellipse width and height even numbers? it could possibly be due to pixel value rounding
@lmccart thanks for the suggestion. I've made the width and height even numbers, as well as the position of the ellipse and the canvas size. I still see the same behaviour unfortunately!
ok that's helpful info thanks! we'll keep looking into it
I found it. Actually closePath is triggering the artifact. In the following sketch, I copied the content of ellipse and added a condition (line 53) so that only calls ctx.closePath if mouse is pressed (or tapped on the screen)
source: https://editor.p5js.org/micuat/sketches/ICfXJN_HI
presentation link for mobile: https://editor.p5js.org/micuat/present/ICfXJN_HI
@lmccart Is there any side effect of removing closePath?
@micuat youre right, that seems redundant! would you like to submit a PR to remove it?
@micuat actually I'm in here right now so I'm going to go ahead and make the change, hope that's ok.
Thanks so much for looking into this and fixing it so quickly! @lmccart when can I expect this fix to be released in the web editor?
we don't have a target date, but I'm working on a new release within the next two weeks. it usually takes a little while longer for the editor to update after that.
Most helpful comment
@micuat actually I'm in here right now so I'm going to go ahead and make the change, hope that's ok.