Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tests.js « postcss « test - github.com/twbs/rfs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 37fb0dd989879c379adcb90cd5900c69769bb77e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
module.exports = {
  'test-1': {},
  'test-2': {
    enableResponsiveFontSizes: false
  },
  'test-3': {
    class: 'disable'
  },
  'test-4': {
    class: 'enable'
  },
  'test-5': {
    breakpointUnit: 'em'
  },
  'test-6': {
    baseFontSize: '17px'
  },
  'test-7': {
    fontSizeUnit: 'px'
  },
  'test-8': {
    twoDimensional: true
  },
  'test-9': {
    baseFontSize: '12px',
    fontSizeUnit: 'px',
    breakpoint: 800,
    breakpointUnit: 'rem',
    twoDimensional: true,
    factor: 5,
    class: true,
    safariIframeResizeBugFix: true,
  },
  'test-10': { // Not testable
    baseFontSize: '12px',
    fontSizeUnit: 'px',
    breakpoint: 800,
    breakpointUnit: 'rem',
    twoDimensional: true,
    factor: 5,
    class: true,
    safariIframeResizeBugFix: true,
  }
};