-
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
report: use details-element-polyfill from node_modules #6593
Conversation
/* Edge doesn't recognize these, and the polyfill doesn't set block. https://github.com/javan/details-element-polyfill/issues/13 */ | ||
details, summary { | ||
display: block; | ||
} |
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.
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.
🎉
@@ -140,6 +140,7 @@ | |||
"chrome-launcher": "^0.10.5", | |||
"configstore": "^3.1.1", | |||
"cssstyle": "1.1.1", | |||
"details-element-polyfill": "2.1.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.
locked to the same version we use for LR
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.
LGTM Love it! No more nested third_party!
followup to #6465
Since LR now takes care of its own copy of
details-element-polyfill
, we can remove it fromreport/html/third_party/
and just rely on the one innode_modules
, copying it into the report from there.