tbody.js 240 B

12345678910111213
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports["default"] = getImplicitRoleForTbody;
  6. /**
  7. * Returns the implicit role for a tbody tag.
  8. */
  9. function getImplicitRoleForTbody() {
  10. return 'rowgroup';
  11. }