1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 06:43:35 +00:00

Merge pull request #1875 from DukeW/master

Minor change to the autofill content script to allow for manual exclusions by web developers.
This commit is contained in:
Chad Scharf
2021-06-02 16:51:20 -04:00
committed by GitHub

View File

@@ -555,7 +555,7 @@
var els = [];
try {
var elsList = theDoc.querySelectorAll('input:not([type="hidden"]):not([type="submit"]):not([type="reset"])' +
':not([type="button"]):not([type="image"]):not([type="file"]), select');
':not([type="button"]):not([type="image"]):not([type="file"]):not([data-bwignore]), select');
els = Array.prototype.slice.call(elsList);
} catch (e) { }