Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Clayblockunova committed Oct 10, 2024
1 parent fbfb307 commit c7e7edb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/lib/definitions.js
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,7 @@ function getFHPaddingEntries(index)
var FF_SRC = Feature.FF_SRC;
var FILL = Feature.FILL;
var FLAT = Feature.FLAT;
var FORMS = Feature.FORMS;
var FROM_CODE_POINT = Feature.FROM_CODE_POINT;
var FUNCTION_19_LF = Feature.FUNCTION_19_LF;
var FUNCTION_22_LF = Feature.FUNCTION_22_LF;
Expand Down
3 changes: 2 additions & 1 deletion src/lib/features.js
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,8 @@ var featureInfos =
check:
function ()
{
var available = typeof document.forms === 'object' && document.forms + '' === '[object HTMLCollection]';
var available = typeof document.forms === 'object' &&
document.forms + '' === '[object HTMLCollection]';
return available;
},
includes: ['ANY_DOCUMENT'],
Expand Down

0 comments on commit c7e7edb

Please sign in to comment.