This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/package.json b/package.json | |
index 7747f0d5..847fbf47 100644 | |
--- a/package.json | |
+++ b/package.json | |
@@ -31,25 +31,25 @@ | |
"babel-traverse": "6.25.0", | |
"babel-types": "6.25.0", | |
"babylon": "6.17.3", | |
"chalk": "^1.1.3", | |
"del": "2.2.2", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Finds rules that are supported by ESLint but not defined in our config. | |
*/ | |
var ourRules = new Set(Object.keys(require('./.eslintrc.js').rules)) | |
var supportedRules = new Set(Object.keys(require('./node_modules/eslint/lib/load-rules')())); | |
var missing = new Set(); | |
var extra = new Set(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<meta charset="utf8"> | |
<title>Testing</title> | |
</head> | |
<body> | |
<div id="container"> | |
React will render here | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit 42b1cba0486a846f355bdc8005de4b2bfdea9010 | |
Author: Paul O’Shannessy <[email protected]> | |
Date: Wed Mar 30 11:57:27 2016 -0700 | |
Make sure simulated events don't warn when providing extra event properties | |
commit 2d069fc5e6774b37ea4fb71ec220cefd7334bee0 | |
Author: Sebastian Markbage <[email protected]> | |
Date: Tue Apr 5 13:40:49 2016 -0700 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/React.js b/src/React.js | |
deleted file mode 100644 | |
index 5aa15e8..0000000 | |
--- a/src/React.js | |
+++ /dev/null | |
@@ -1,28 +0,0 @@ | |
-/** | |
- * Copyright 2013-present, Facebook, Inc. | |
- * All rights reserved. | |
- * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit d10b355b42d42b5c5a8da9c1c2901cca053f6ce7 | |
Merge: 80bff53 28a97db | |
Author: Paul O’Shannessy <[email protected]> | |
Date: Tue Apr 5 13:27:13 2016 -0700 | |
Merge pull request #6228 from everdimension/fix_option_value | |
set value property explicitly for "option" element even if value is empty | |
commit 1573baaee8ba1c9cd84145b01effcb5eb80503fb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/React.js b/src/React.js | |
deleted file mode 100644 | |
index 5aa15e8..0000000 | |
--- a/src/React.js | |
+++ /dev/null | |
@@ -1,28 +0,0 @@ | |
-/** | |
- * Copyright 2013-present, Facebook, Inc. | |
- * All rights reserved. | |
- * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const jsdom = require('jsdom'); | |
const makeKey = (attr) => { | |
return attr.split(/[-:]/).map((s, i) => { | |
return i === 0 ? s : s[0].toUpperCase() + s.slice(1); | |
}).join(''); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/renderers/dom/shared/SVGDOMPropertyConfig.js b/src/renderers/dom/shared/SVGDOMPropertyConfig.js | |
index c7c035c..3ca1b94 100644 | |
--- a/src/renderers/dom/shared/SVGDOMPropertyConfig.js | |
+++ b/src/renderers/dom/shared/SVGDOMPropertyConfig.js | |
@@ -18,47 +18,239 @@ var NS = { | |
var SVGDOMPropertyConfig = { | |
Properties: { | |
+ accentHeight: null, | |
+ accumulate: null, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Only in lib copy: .DS_Store | |
diff -U4 lib copy/CSSCore.js lib/CSSCore.js | |
--- lib copy/CSSCore.js 2016-02-27 17:48:04.000000000 -0800 | |
+++ lib/CSSCore.js 2016-02-27 18:02:23.000000000 -0800 | |
@@ -1,4 +1,6 @@ | |
+'use strict'; | |
+ | |
/** | |
* Copyright 2013-2015, Facebook, Inc. | |
* All rights reserved. |