From 7b11aa9450e3040199ca83faa8c191956e82e99c Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Wed, 24 Aug 2016 01:47:51 +0800 Subject: [PATCH] Add playsInline as an allowed HTML property (#7519) The WHATWG has unprefixed `-webkit-playsinline` as `playsinline` (see: https://github.com/whatwg/html/pull/1444) and iOS 10 intends to use it (https://webkit.org/blog/6784/new-video-policies-for-ios/). --- src/renderers/dom/shared/HTMLDOMPropertyConfig.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/renderers/dom/shared/HTMLDOMPropertyConfig.js b/src/renderers/dom/shared/HTMLDOMPropertyConfig.js index c6cf0dcbca..50e61797c3 100644 --- a/src/renderers/dom/shared/HTMLDOMPropertyConfig.js +++ b/src/renderers/dom/shared/HTMLDOMPropertyConfig.js @@ -116,6 +116,7 @@ var HTMLDOMPropertyConfig = { optimum: 0, pattern: 0, placeholder: 0, + playsInline: HAS_BOOLEAN_VALUE, poster: 0, preload: 0, profile: 0,