8000 add missing -ms-grid display property to support IE grid layouts (#1926) · niklasvh/html2canvas@ee3ca35 · GitHub
[go: up one dir, main page]

Skip to content

Commit ee3ca35

Browse files
dmolnar99niklasvh
authored andcommitted
add missing -ms-grid display property to support IE grid layouts (#1926)
1 parent 9a63797 commit ee3ca35

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/css/property-descriptors/display.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ const parseDisplayValue = (display: string): Display => {
6565
case '-webkit-flex':
6666
return DISPLAY.FLEX;
6767
case 'grid':
68+
case '-ms-grid':
6869
return DISPLAY.GRID;
6970
case 'ruby':
7071
return DISPLAY.RUBY;

0 commit comments

Comments
 (0)
0