Commit 24eea69 1 parent 912a697 commit 24eea69 Copy full SHA for 24eea69
File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,9 @@ static EXTENSION_EXC_VALUES: Lazy<Regex> = Lazy::new(|| {
43
43
webkit-masked-url:|
44
44
# Firefox message when an extension tries to modify a no-longer-existing DOM node
45
45
# See https://blog.mozilla.org/addons/2012/09/12/what-does-cant-access-dead-object-mean/
46
- can't\saccess\sdead\sobject
46
+ can't\saccess\sdead\sobject|
47
+ # Crypocurrency related extension errors
48
+ Cannot\sredefine\sproperty:\s(solana|ethereum)
47
49
"# ,
48
50
)
49
51
. expect ( "Invalid browser extensions filter (Exec Vals) Regex" )
@@ -260,6 +262,8 @@ mod tests {
260
262
"Extension context invalidated" ,
261
263
"useless error webkit-masked-url: please filter" ,
262
264
"TypeError: can't access dead object because dead stuff smells bad" ,
265
+ "Cannot redefine property: solana" ,
266
+ "Cannot redefine property: ethereum" ,
263
267
] ;
264
268
265
269
for exc_value in & exceptions {
You can’t perform that action at this time.
0 commit comments