-
Notifications
You must be signed in to change notification settings - Fork 9.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tests(treemap): add test for node coverage shading #12609
Conversation
|
||
// Determine visual red shading percentage | ||
const percentRed = await gtmElemHandle.evaluate(node => { | ||
const redWidthPx = parseInt(window.getComputedStyle(node, ':before').width); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would const redWidthPx = node.clientWidth
be the same?
oh, no, because pseudoelement. and no way to get a reference to that in JS.
TIL the second parameter of getComputedStyle. 0 :
would make sense. 2 does too. but 1?!?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would
const redWidthPx = node.clientWidth
be the same?
oh, no, because pseudoelement. and no way to get a reference to that in JS.
yup exactly.
TIL the second parameter of getComputedStyle. 0
:
would make sense. 2 does too. but 1?!?
yeah it's weird. spec says 1 or two colons is fine. https://www.w3.org/TR/cssom-1/#dom-window-getcomputedstyle
looks like chrome works with zero, one or two colons. handy.
Co-authored-by: Connor Clark <[email protected]>
|
||
// Determine visual red shading percentage | ||
const percentRed = await gtmElemHandle.evaluate(node => { | ||
const redWidthPx = parseInt(window.getComputedStyle(node, ':before').width); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would
const redWidthPx = node.clientWidth
be the same?
oh, no, because pseudoelement. and no way to get a reference to that in JS.
yup exactly.
TIL the second parameter of getComputedStyle. 0
:
would make sense. 2 does too. but 1?!?
yeah it's weird. spec says 1 or two colons is fine. https://www.w3.org/TR/cssom-1/#dom-window-getcomputedstyle
looks like chrome works with zero, one or two colons. handy.
followup from #12603 (comment)
i wrote the code that was wrong, so here's my penance.
driveby change of port number... no reason it needs to conflict w/ 10200 and i'm always happy to avoid stopping my servers.