- From: ExE Boss via GitHub <sysbot+gh@w3.org>
- Date: Thu, 08 Aug 2019 04:49:41 +0000
- To: public-css-archive@w3.org
@SelenIT The following is more performant: ```js Array.from(document.querySelectorAll('a img', img => { let el = img; while ((el = el.parentElement)) { if (el.localName.toLowerCase() == 'a') return el; } return null; }); ``` -- GitHub Notification of comment by ExE-Boss Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/3925#issuecomment-519362052 using your GitHub account
Received on Thursday, 8 August 2019 04:49:42 UTC