From 8b28bce65b3babf47f15c91c52190f5f67d8b16d Mon Sep 17 00:00:00 2001 From: Chris Bland Date: Fri, 14 Nov 2014 16:40:01 -0600 Subject: [PATCH] Adds support for headers html attirbute to support W3 H43: Using id and headers attributes to associate data cells with header cells in data tables --- docs/docs/ref-04-tags-and-attributes.md | 2 +- src/browser/ui/dom/HTMLDOMPropertyConfig.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/docs/ref-04-tags-and-attributes.md b/docs/docs/ref-04-tags-and-attributes.md index 25173e1cd91..3522fc59d85 100644 --- a/docs/docs/ref-04-tags-and-attributes.md +++ b/docs/docs/ref-04-tags-and-attributes.md @@ -56,7 +56,7 @@ accept acceptCharset accessKey action allowFullScreen allowTransparency alt async autoComplete autoPlay cellPadding cellSpacing charSet checked classID className cols colSpan content contentEditable contextMenu controls coords crossOrigin data dateTime defer dir disabled download draggable encType form -formNoValidate frameBorder height hidden href hrefLang htmlFor httpEquiv icon +formNoValidate frameBorder headers height hidden href hrefLang htmlFor httpEquiv icon id label lang list loop manifest max maxLength media mediaGroup method min multiple muted name noValidate open pattern placeholder poster preload radioGroup readOnly rel required role rows rowSpan sandbox scope scrolling diff --git a/src/browser/ui/dom/HTMLDOMPropertyConfig.js b/src/browser/ui/dom/HTMLDOMPropertyConfig.js index 850f6e5bc26..a113975b6de 100644 --- a/src/browser/ui/dom/HTMLDOMPropertyConfig.js +++ b/src/browser/ui/dom/HTMLDOMPropertyConfig.js @@ -90,6 +90,7 @@ var HTMLDOMPropertyConfig = { form: MUST_USE_ATTRIBUTE, formNoValidate: HAS_BOOLEAN_VALUE, frameBorder: MUST_USE_ATTRIBUTE, + headers: null, height: MUST_USE_ATTRIBUTE, hidden: MUST_USE_ATTRIBUTE | HAS_BOOLEAN_VALUE, href: null,