index.js 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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 withinText from './within-text/input.word2016.html';
  7. import combined from './combined/input.word2016.html';
  8. import twoLine from './two-line/input.word2016.html';
  9. import withinTextNormalized from './within-text/normalized.word2016.html';
  10. import combinedNormalized from './combined/normalized.word2016.html';
  11. import twoLineNormalized from './two-line/normalized.word2016.html';
  12. import withinTextModel from './within-text/model.word2016.html';
  13. import combinedModel from './combined/model.word2016.html';
  14. import twoLineModel from './two-line/model.word2016.html';
  15. export const fixtures = {
  16. input: {
  17. withinText,
  18. combined,
  19. twoLine
  20. },
  21. normalized: {
  22. withinText: withinTextNormalized,
  23. combined: combinedNormalized,
  24. twoLine: twoLineNormalized
  25. },
  26. model: {
  27. withinText: withinTextModel,
  28. combined: combinedModel,
  29. twoLine: twoLineModel
  30. }
  31. };
  32. // Safari.
  33. import withinTextSafari from './within-text/input.safari.word2016.html';
  34. import combinedSafari from './combined/input.safari.word2016.html';
  35. import twoLineSafari from './two-line/input.safari.word2016.html';
  36. import withinTextNormalizedSafari from './within-text/normalized.safari.word2016.html';
  37. import combinedNormalizedSafari from './combined/normalized.safari.word2016.html';
  38. import twoLineNormalizedSafari from './two-line/normalized.safari.word2016.html';
  39. export const browserFixtures = {
  40. safari: {
  41. input: {
  42. withinText: withinTextSafari,
  43. combined: combinedSafari,
  44. twoLine: twoLineSafari
  45. },
  46. normalized: {
  47. withinText: withinTextNormalizedSafari,
  48. combined: combinedNormalizedSafari,
  49. twoLine: twoLineNormalizedSafari
  50. },
  51. model: {
  52. withinText: withinTextModel,
  53. combined: combinedModel,
  54. twoLine: twoLineModel
  55. }
  56. }
  57. };