Skip to content

Instantly share code, notes, and snippets.

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",
/**
* 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();
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf8">
<title>Testing</title>
</head>
<body>
<div id="container">
React will render here
</div>
commit 42b1cba0486a846f355bdc8005de4b2bfdea9010
Author: Paul O’Shannessy <paul@oshannessy.com>
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 <sema@fb.com>
Date: Tue Apr 5 13:40:49 2016 -0700
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.
- *
@zpao
zpao / -
Created April 5, 2016 20:29
commit d10b355b42d42b5c5a8da9c1c2901cca053f6ce7
Merge: 80bff53 28a97db
Author: Paul O’Shannessy <paul@oshannessy.com>
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
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.
- *
'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('');
}
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,
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.