index.js 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /**
  2. * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  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 resumeTemplate from './resume-template/input.word2016.html';
  15. import nested from './nested/input.word2016.html';
  16. import nestedMixed from './nested-mixed/input.word2016.html';
  17. import nestedMultiple from './nested-multiple/input.word2016.html';
  18. import simpleNormalized from './simple/normalized.word2016.html';
  19. import styledNormalized from './styled/normalized.word2016.html';
  20. import multipleNormalized from './multiple/normalized.word2016.html';
  21. import multipleCombinedNormalized from './multiple-combined/normalized.word2016.html';
  22. import manyOneItemNormalized from './many-one-item/normalized.word2016.html';
  23. import heading1Normalized from './heading1/normalized.word2016.html';
  24. import heading3StyledNormalized from './heading3-styled/normalized.word2016.html';
  25. import heading7Normalized from './heading7/normalized.word2016.html';
  26. import resumeTemplateNormalized from './resume-template/normalized.word2016.html';
  27. import nestedNormalized from './nested/normalized.word2016.html';
  28. import nestedMixedNormalized from './nested-mixed/normalized.word2016.html';
  29. import nestedMultipleNormalized from './nested-multiple/normalized.word2016.html';
  30. import simpleModel from './simple/model.word2016.html';
  31. import styledModel from './styled/model.word2016.html';
  32. import multipleModel from './multiple/model.word2016.html';
  33. import multipleCombinedModel from './multiple-combined/model.word2016.html';
  34. import manyOneItemModel from './many-one-item/model.word2016.html';
  35. import heading1Model from './heading1/model.word2016.html';
  36. import heading3StyledModel from './heading3-styled/model.word2016.html';
  37. import heading7Model from './heading7/model.word2016.html';
  38. import resumeTemplateModel from './resume-template/model.word2016.html';
  39. import nestedModel from './nested/model.word2016.html';
  40. import nestedMixedModel from './nested-mixed/model.word2016.html';
  41. import nestedMultipleModel from './nested-multiple/model.word2016.html';
  42. export const fixtures = {
  43. input: {
  44. simple,
  45. styled,
  46. multiple,
  47. multipleCombined,
  48. manyOneItem,
  49. heading1,
  50. heading3Styled,
  51. heading7,
  52. resumeTemplate,
  53. nested,
  54. nestedMixed,
  55. nestedMultiple
  56. },
  57. normalized: {
  58. simple: simpleNormalized,
  59. styled: styledNormalized,
  60. multiple: multipleNormalized,
  61. multipleCombined: multipleCombinedNormalized,
  62. manyOneItem: manyOneItemNormalized,
  63. heading1: heading1Normalized,
  64. heading3Styled: heading3StyledNormalized,
  65. heading7: heading7Normalized,
  66. resumeTemplate: resumeTemplateNormalized,
  67. nested: nestedNormalized,
  68. nestedMixed: nestedMixedNormalized,
  69. nestedMultiple: nestedMultipleNormalized
  70. },
  71. model: {
  72. simple: simpleModel,
  73. styled: styledModel,
  74. multiple: multipleModel,
  75. multipleCombined: multipleCombinedModel,
  76. manyOneItem: manyOneItemModel,
  77. heading1: heading1Model,
  78. heading3Styled: heading3StyledModel,
  79. heading7: heading7Model,
  80. resumeTemplate: resumeTemplateModel,
  81. nested: nestedModel,
  82. nestedMixed: nestedMixedModel,
  83. nestedMultiple: nestedMultipleModel
  84. }
  85. };
  86. // Safari.
  87. import simpleSafari from './simple/input.safari.word2016.html';
  88. import styledSafari from './styled/input.safari.word2016.html';
  89. import multipleSafari from './multiple/input.safari.word2016.html';
  90. import multipleCombinedSafari from './multiple-combined/input.safari.word2016.html';
  91. import manyOneItemSafari from './many-one-item/input.safari.word2016.html';
  92. import heading1Safari from './heading1/input.safari.word2016.html';
  93. import heading3StyledSafari from './heading3-styled/input.safari.word2016.html';
  94. import heading7Safari from './heading7/input.safari.word2016.html';
  95. import resumeTemplateSafari from './resume-template/input.safari.word2016.html';
  96. import simpleNormalizedSafari from './simple/normalized.safari.word2016.html';
  97. import styledNormalizedSafari from './styled/normalized.safari.word2016.html';
  98. import multipleNormalizedSafari from './multiple/normalized.safari.word2016.html';
  99. import multipleCombinedNormalizedSafari from './multiple-combined/normalized.safari.word2016.html';
  100. import manyOneItemNormalizedSafari from './many-one-item/normalized.safari.word2016.html';
  101. import heading1NormalizedSafari from './heading1/normalized.safari.word2016.html';
  102. import heading3StyledNormalizedSafari from './heading3-styled/normalized.safari.word2016.html';
  103. import heading7NormalizedSafari from './heading7/normalized.safari.word2016.html';
  104. import resumeTemplateNormalizedSafari from './resume-template/normalized.safari.word2016.html';
  105. import styledSafariModel from './styled/model.safari.word2016.html';
  106. import resumeTemplateSafariModel from './resume-template/model.safari.word2016.html';
  107. export const browserFixtures = {
  108. safari: {
  109. input: {
  110. simple: simpleSafari,
  111. styled: styledSafari,
  112. multiple: multipleSafari,
  113. multipleCombined: multipleCombinedSafari,
  114. manyOneItem: manyOneItemSafari,
  115. heading1: heading1Safari,
  116. heading3Styled: heading3StyledSafari,
  117. heading7: heading7Safari,
  118. resumeTemplate: resumeTemplateSafari
  119. },
  120. normalized: {
  121. simple: simpleNormalizedSafari,
  122. styled: styledNormalizedSafari,
  123. multiple: multipleNormalizedSafari,
  124. multipleCombined: multipleCombinedNormalizedSafari,
  125. manyOneItem: manyOneItemNormalizedSafari,
  126. heading1: heading1NormalizedSafari,
  127. heading3Styled: heading3StyledNormalizedSafari,
  128. heading7: heading7NormalizedSafari,
  129. resumeTemplate: resumeTemplateNormalizedSafari
  130. },
  131. model: {
  132. simple: simpleModel,
  133. styled: styledSafariModel,
  134. multiple: multipleModel,
  135. multipleCombined: multipleCombinedModel,
  136. manyOneItem: manyOneItemModel,
  137. heading1: heading1Model,
  138. heading3Styled: heading3StyledModel,
  139. heading7: heading7Model,
  140. resumeTemplate: resumeTemplateSafariModel
  141. }
  142. }
  143. };