properties.js 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. module.exports = [
  2. {
  3. 'should': 'Should mirror property name: border-top-right-radius',
  4. 'expected': 'div { border-top-left-radius:15px; }',
  5. 'input': 'div { border-top-right-radius:15px; }',
  6. 'reversable': true
  7. },
  8. {
  9. 'should': 'Should mirror property name: border-bottom-right-radius',
  10. 'expected': 'div { border-bottom-left-radius:15px; }',
  11. 'input': 'div { border-bottom-right-radius:15px; }',
  12. 'reversable': true
  13. },
  14. {
  15. 'should': 'Should mirror property name: border-left',
  16. 'expected': 'div { border-right:1px solid black; }',
  17. 'input': 'div { border-left:1px solid black; }',
  18. 'reversable': true
  19. },
  20. {
  21. 'should': 'Should mirror property name: border-left-color',
  22. 'expected': 'div { border-right-color:black; }',
  23. 'input': 'div { border-left-color:black; }',
  24. 'reversable': true
  25. },
  26. {
  27. 'should': 'Should mirror property name: border-left-style',
  28. 'expected': 'div { border-right-style:solid; }',
  29. 'input': 'div { border-left-style:solid; }',
  30. 'reversable': true
  31. },
  32. {
  33. 'should': 'Should mirror property name: border-left-width',
  34. 'expected': 'div { border-right-width:1em; }',
  35. 'input': 'div { border-left-width:1em; }',
  36. 'reversable': true
  37. },
  38. {
  39. 'should': 'Should mirror property name: left',
  40. 'expected': 'div { right:auto; }',
  41. 'input': 'div { left:auto; }',
  42. 'reversable': true
  43. },
  44. {
  45. 'should': 'Should mirror property name: margin-left',
  46. 'expected': 'div { margin-right:2em; }',
  47. 'input': 'div { margin-left:2em; }',
  48. 'reversable': true
  49. },
  50. {
  51. 'should': 'Should mirror property name: padding-left',
  52. 'expected': 'div { padding-right:2em; }',
  53. 'input': 'div { padding-left:2em; }',
  54. 'reversable': true
  55. }
  56. ]