@@ -104,6 +104,47 @@ you provide source maps in addition to your minified files that data
104104becomes available in Sentry. For more information see
105105:ref: `raven-js-sourcemaps `.
106106
107+ Browser Compatibility
108+ ---------------------
109+
110+ Raven.js supports all major browsers. In older browsers, error reports collected
111+ by Raven.js may have a degraded level of detail – for example, missing stack trace data
112+ or missing source code column numbers.
113+
114+ The table below describes what features are available in each supported browser:
115+
116+ +-------------------------+--------------+----------------+-------------+
117+ | Browser | Line numbers | Column numbers | Stack trace |
118+ +=========================+==============+================+=============+
119+ | Chrome | ✓ | ✓ | ✓ |
120+ +-------------------------+--------------+----------------+-------------+
121+ | Firefox | ✓ | ✓ | ✓ |
122+ +-------------------------+--------------+----------------+-------------+
123+ | Edge | ✓ | ✓ | ✓ |
124+ +-------------------------+--------------+----------------+-------------+
125+ | IE 11 | ✓ | ✓ | ✓ |
126+ +-------------------------+--------------+----------------+-------------+
127+ | IE 10 | ✓ | ✓ | ✓ |
128+ +-------------------------+--------------+----------------+-------------+
129+ | IE 9 | ✓ | ✓ | |
130+ +-------------------------+--------------+----------------+-------------+
131+ | IE 8 | ✓ | | |
132+ +-------------------------+--------------+----------------+-------------+
133+ | Safari 6+ | ✓ | ✓ | ✓ |
134+ +-------------------------+--------------+----------------+-------------+
135+ | iOS 6+ | ✓ | ✓ | ✓ |
136+ +-------------------------+--------------+----------------+-------------+
137+ | Opera 15+ | ✓ | ✓ | ✓ |
138+ +-------------------------+--------------+----------------+-------------+
139+ | Android Browser 4.4 | ✓ | ✓ | ✓ |
140+ +-------------------------+--------------+----------------+-------------+
141+ | Android Browser 4 - 4.3 | ✓ | | |
142+ +-------------------------+--------------+----------------+-------------+
143+
144+ For unlisted browsers (e.g. IE7), Raven.js is designed to fail gracefully. Including
145+ it on your page should have no effect on your page; it will just not collect
146+ and report uncaught exceptions.
147+
107148Deep Dive
108149---------
109150
0 commit comments