File tree 2 files changed +9
-2
lines changed 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 26
26
'EBCallBackMessageReceived' ,
27
27
# See https://groups.google.com/a/chromium.org/forum/#!topic/chromium-discuss/7VU0_VvC7mE
28
28
'_gCrWeb' ,
29
- # See http://toolbar.conduit.com/Developer/HtmlAndGadget/Methods/JSInjection.aspx
30
- 'conduitPage'
29
+ # See http://toolbar.conduit.com/Debveloper/HtmlAndGadget/Methods/JSInjection.aspx
30
+ 'conduitPage' ,
31
+ # Google Search app (iOS)
32
+ # See: https://github.com/getsentry/raven-js/issues/756
33
+ 'null is not an object (evaluating \' elt.parentNode\' )'
31
34
))), re .I )
32
35
33
36
EXTENSION_EXC_SOURCES = re .compile ('|' .join ((
Original file line number Diff line number Diff line change @@ -43,6 +43,10 @@ def test_filters_conduit_toolbar(self):
43
43
data = self .get_mock_data (exc_value = 'what does conduitPage even do' )
44
44
assert self .apply_filter (data )
45
45
46
+ def test_filters_google_search_app_ios (self ):
47
+ data = self .get_mock_data (exc_value = 'null is not an object (evaluating \' elt.parentNode\' )' )
48
+ assert self .apply_filter (data )
49
+
46
50
def test_filters_chrome_extensions (self ):
47
51
data = self .get_mock_data (exc_source = 'chrome://my-extension/or/something' )
48
52
assert self .apply_filter (data )
You can’t perform that action at this time.
0 commit comments