index.js 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /**
  2. * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. // Default.
  6. import simple from './simple/input.word2016.html';
  7. import styled from './styled/input.word2016.html';
  8. import multiple from './multiple/input.word2016.html';
  9. import multipleCombined from './multiple-combined/input.word2016.html';
  10. import manyOneItem from './many-one-item/input.word2016.html';
  11. import heading1 from './heading1/input.word2016.html';
  12. import heading3Styled from './heading3-styled/input.word2016.html';
  13. import heading7 from './heading7/input.word2016.html';
  14. import simpleNormalized from './simple/normalized.word2016.html';
  15. import styledNormalized from './styled/normalized.word2016.html';
  16. import multipleNormalized from './multiple/normalized.word2016.html';
  17. import multipleCombinedNormalized from './multiple-combined/normalized.word2016.html';
  18. import manyOneItemNormalized from './many-one-item/normalized.word2016.html';
  19. import heading1Normalized from './heading1/normalized.word2016.html';
  20. import heading3StyledNormalized from './heading3-styled/normalized.word2016.html';
  21. import heading7Normalized from './heading7/normalized.word2016.html';
  22. import simpleModel from './simple/model.word2016.html';
  23. import styledModel from './styled/model.word2016.html';
  24. import multipleModel from './multiple/model.word2016.html';
  25. import multipleCombinedModel from './multiple-combined/model.word2016.html';
  26. import manyOneItemModel from './many-one-item/model.word2016.html';
  27. import heading1Model from './heading1/model.word2016.html';
  28. import heading3StyledModel from './heading3-styled/model.word2016.html';
  29. import heading7Model from './heading7/model.word2016.html';
  30. export const fixtures = {
  31. input: {
  32. simple,
  33. styled,
  34. multiple,
  35. multipleCombined,
  36. manyOneItem,
  37. heading1,
  38. heading3Styled,
  39. heading7
  40. },
  41. normalized: {
  42. simple: simpleNormalized,
  43. styled: styledNormalized,
  44. multiple: multipleNormalized,
  45. multipleCombined: multipleCombinedNormalized,
  46. manyOneItem: manyOneItemNormalized,
  47. heading1: heading1Normalized,
  48. heading3Styled: heading3StyledNormalized,
  49. heading7: heading7Normalized
  50. },
  51. model: {
  52. simple: simpleModel,
  53. styled: styledModel,
  54. multiple: multipleModel,
  55. multipleCombined: multipleCombinedModel,
  56. manyOneItem: manyOneItemModel,
  57. heading1: heading1Model,
  58. heading3Styled: heading3StyledModel,
  59. heading7: heading7Model
  60. }
  61. };
  62. // Safari.
  63. import simpleSafari from './simple/input.safari.word2016.html';
  64. import styledSafari from './styled/input.safari.word2016.html';
  65. import multipleSafari from './multiple/input.safari.word2016.html';
  66. import multipleCombinedSafari from './multiple-combined/input.safari.word2016.html';
  67. import manyOneItemSafari from './many-one-item/input.safari.word2016.html';
  68. import heading1Safari from './heading1/input.safari.word2016.html';
  69. import heading3StyledSafari from './heading3-styled/input.safari.word2016.html';
  70. import heading7Safari from './heading7/input.safari.word2016.html';
  71. import simpleNormalizedSafari from './simple/normalized.safari.word2016.html';
  72. import styledNormalizedSafari from './styled/normalized.safari.word2016.html';
  73. import multipleNormalizedSafari from './multiple/normalized.safari.word2016.html';
  74. import multipleCombinedNormalizedSafari from './multiple-combined/normalized.safari.word2016.html';
  75. import manyOneItemNormalizedSafari from './many-one-item/normalized.safari.word2016.html';
  76. import heading1NormalizedSafari from './heading1/normalized.safari.word2016.html';
  77. import heading3StyledNormalizedSafari from './heading3-styled/normalized.safari.word2016.html';
  78. import heading7NormalizedSafari from './heading7/normalized.safari.word2016.html';
  79. import styledSafariModel from './styled/model.safari.word2016.html';
  80. export const browserFixtures = {
  81. safari: {
  82. input: {
  83. simple: simpleSafari,
  84. styled: styledSafari,
  85. multiple: multipleSafari,
  86. multipleCombined: multipleCombinedSafari,
  87. manyOneItem: manyOneItemSafari,
  88. heading1: heading1Safari,
  89. heading3Styled: heading3StyledSafari,
  90. heading7: heading7Safari
  91. },
  92. normalized: {
  93. simple: simpleNormalizedSafari,
  94. styled: styledNormalizedSafari,
  95. multiple: multipleNormalizedSafari,
  96. multipleCombined: multipleCombinedNormalizedSafari,
  97. manyOneItem: manyOneItemNormalizedSafari,
  98. heading1: heading1NormalizedSafari,
  99. heading3Styled: heading3StyledNormalizedSafari,
  100. heading7: heading7NormalizedSafari
  101. },
  102. model: {
  103. simple: simpleModel,
  104. styled: styledSafariModel,
  105. multiple: multipleModel,
  106. multipleCombined: multipleCombinedModel,
  107. manyOneItem: manyOneItemModel,
  108. heading1: heading1Model,
  109. heading3Styled: heading3StyledModel,
  110. heading7: heading7Model
  111. }
  112. }
  113. };