Skip to content

Commit

Permalink
Merge pull request #4779 from mnordick/master
Browse files Browse the repository at this point in the history
Support CSS3 Grid Layout Module for inline styles
  • Loading branch information
sophiebits committed Oct 7, 2015
2 parents 926f372 + 8da4efa commit 4a29fd8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/renderers/dom/shared/CSSProperty.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ var isUnitlessNumber = {
flexShrink: true,
flexNegative: true,
flexOrder: true,
gridRow: true,
gridColumn: true,
fontWeight: true,
lineClamp: true,
lineHeight: true,
Expand Down
2 changes: 2 additions & 0 deletions src/renderers/dom/shared/__tests__/CSSProperty-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ describe('CSSProperty', function() {
expect(CSSProperty.isUnitlessNumber.WebkitLineClamp).toBeTruthy();
expect(CSSProperty.isUnitlessNumber.msFlexGrow).toBeTruthy();
expect(CSSProperty.isUnitlessNumber.MozFlexGrow).toBeTruthy();
expect(CSSProperty.isUnitlessNumber.msGridRow).toBeTruthy();
expect(CSSProperty.isUnitlessNumber.msGridColumn).toBeTruthy();
});

});

0 comments on commit 4a29fd8

Please sign in to comment.