Merge pull request #5166 from spicyj/gh-5157

Add feature test for document.createEvent
This commit is contained in:
Sebastian Markbåge
2015-10-14 00:08:56 -07:00
+3 -1
View File
@@ -61,7 +61,9 @@ if (__DEV__) {
* real browser event.
*/
if (typeof window !== 'undefined' &&
typeof window.dispatchEvent === 'function') {
typeof window.dispatchEvent === 'function' &&
typeof document !== 'undefined' &&
typeof document.createEvent === 'function') {
var fakeNode = document.createElement('react');
ReactErrorUtils.invokeGuardedCallback = function(name, func, a, b) {
var boundFunc = func.bind(null, a, b);