compass 0.11.5 → 0.11.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (151) hide show
  1. data/VERSION.yml +1 -1
  2. data/bin/compass +5 -1
  3. data/bin/compass.compiled.rbc +707 -0
  4. data/examples/compass/compass_app_log.txt +6 -0
  5. data/features/command_line.feature +16 -16
  6. data/features/extensions.feature +6 -0
  7. data/features/step_definitions/command_line_steps.rb +2 -0
  8. data/frameworks/compass/stylesheets/compass/css3/_images.scss +6 -6
  9. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +19 -0
  10. data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +12 -3
  11. data/frameworks/compass/stylesheets/compass/typography/lists/_bullets.scss +1 -1
  12. data/frameworks/compass/stylesheets/compass/typography/lists/_inline-block-list.scss +14 -11
  13. data/frameworks/compass/templates/pie/PIE.htc +83 -64
  14. data/lib/compass.rbc +42 -36
  15. data/lib/compass/actions.rbc +244 -85
  16. data/lib/compass/app_integration.rbc +28 -20
  17. data/lib/compass/app_integration/merb.rbc +8 -4
  18. data/lib/compass/app_integration/rails.rbc +664 -148
  19. data/lib/compass/app_integration/rails/configuration_defaults.rbc +1089 -332
  20. data/lib/compass/app_integration/rails/installer.rbc +145 -61
  21. data/lib/compass/app_integration/stand_alone.rbc +15 -15
  22. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +23 -23
  23. data/lib/compass/app_integration/stand_alone/installer.rbc +52 -32
  24. data/lib/compass/browser_support.rbc +35 -23
  25. data/lib/compass/commands.rbc +307 -0
  26. data/lib/compass/commands/base.rbc +1044 -0
  27. data/lib/compass/commands/clean_project.rbc +1856 -0
  28. data/lib/compass/commands/create_project.rbc +2691 -0
  29. data/lib/compass/commands/default.rbc +1677 -0
  30. data/lib/compass/commands/generate_grid_background.rbc +1939 -0
  31. data/lib/compass/commands/help.rbc +1921 -0
  32. data/lib/compass/commands/imports.rbc +969 -0
  33. data/lib/compass/commands/installer_command.rbc +807 -0
  34. data/lib/compass/commands/interactive.rbc +1341 -0
  35. data/lib/compass/commands/list_frameworks.rbc +1111 -0
  36. data/lib/compass/commands/print_version.rbc +2478 -0
  37. data/lib/compass/commands/project_base.rbc +2085 -0
  38. data/lib/compass/commands/project_stats.rb +7 -7
  39. data/lib/compass/commands/project_stats.rbc +4202 -0
  40. data/lib/compass/commands/registry.rbc +1350 -0
  41. data/lib/compass/commands/sprite.rbc +2212 -0
  42. data/lib/compass/commands/stamp_pattern.rbc +2011 -0
  43. data/lib/compass/commands/unpack_extension.rbc +2348 -0
  44. data/lib/compass/commands/update_project.rbc +3002 -0
  45. data/lib/compass/commands/validate_project.rbc +1686 -0
  46. data/lib/compass/commands/watch_project.rbc +4155 -0
  47. data/lib/compass/commands/write_configuration.rbc +2896 -0
  48. data/lib/compass/compiler.rbc +591 -398
  49. data/lib/compass/configuration.rbc +134 -78
  50. data/lib/compass/configuration/adapters.rbc +98 -40
  51. data/lib/compass/configuration/comments.rbc +132 -51
  52. data/lib/compass/configuration/data.rbc +541 -551
  53. data/lib/compass/configuration/defaults.rbc +764 -189
  54. data/lib/compass/configuration/file_data.rbc +37 -125
  55. data/lib/compass/configuration/helpers.rb +7 -2
  56. data/lib/compass/configuration/helpers.rbc +433 -153
  57. data/lib/compass/configuration/inheritance.rbc +412 -165
  58. data/lib/compass/configuration/paths.rbc +9 -9
  59. data/lib/compass/configuration/serialization.rbc +151 -84
  60. data/lib/compass/dependencies.rbc +16 -4
  61. data/lib/compass/errors.rbc +5 -5
  62. data/lib/compass/exec.rbc +500 -0
  63. data/lib/compass/exec/command_option_parser.rbc +676 -0
  64. data/lib/compass/exec/global_options_parser.rbc +1306 -0
  65. data/lib/compass/exec/helpers.rbc +758 -0
  66. data/lib/compass/exec/project_options_parser.rbc +1515 -0
  67. data/lib/compass/exec/sub_command_ui.rbc +1191 -0
  68. data/lib/compass/frameworks.rb +10 -4
  69. data/lib/compass/frameworks.rbc +118 -66
  70. data/lib/compass/grid_builder.rbc +0 -0
  71. data/lib/compass/installers.rbc +152 -0
  72. data/lib/compass/installers/bare_installer.rbc +939 -0
  73. data/lib/compass/installers/base.rbc +4427 -0
  74. data/lib/compass/installers/manifest.rbc +3335 -0
  75. data/lib/compass/installers/manifest_installer.rbc +1591 -0
  76. data/lib/compass/installers/template_context.rbc +1030 -0
  77. data/lib/compass/logger.rbc +2317 -0
  78. data/lib/compass/quick_cache.rbc +12 -8
  79. data/lib/compass/sass_extensions.rbc +8 -4
  80. data/lib/compass/sass_extensions/functions.rbc +90 -57
  81. data/lib/compass/sass_extensions/functions/colors.rbc +22 -18
  82. data/lib/compass/sass_extensions/functions/constants.rbc +45 -25
  83. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +48 -36
  84. data/lib/compass/sass_extensions/functions/display.rbc +341 -107
  85. data/lib/compass/sass_extensions/functions/enumerate.rbc +9 -9
  86. data/lib/compass/sass_extensions/functions/env.rbc +299 -0
  87. data/lib/compass/sass_extensions/functions/font_files.rbc +540 -123
  88. data/lib/compass/sass_extensions/functions/gradient_support.rbc +379 -167
  89. data/lib/compass/sass_extensions/functions/image_size.rbc +715 -400
  90. data/lib/compass/sass_extensions/functions/inline_image.rbc +152 -98
  91. data/lib/compass/sass_extensions/functions/lists.rb +5 -0
  92. data/lib/compass/sass_extensions/functions/lists.rbc +75 -39
  93. data/lib/compass/sass_extensions/functions/selectors.rbc +36 -28
  94. data/lib/compass/sass_extensions/functions/sprites.rbc +255 -233
  95. data/lib/compass/sass_extensions/functions/trig.rbc +53 -51
  96. data/lib/compass/sass_extensions/functions/urls.rbc +3151 -1044
  97. data/lib/compass/sass_extensions/monkey_patches.rbc +5 -5
  98. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +63 -47
  99. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +36 -16
  100. data/lib/compass/sass_extensions/sprites.rbc +93 -13
  101. data/lib/compass/sass_extensions/sprites/engines.rbc +615 -6
  102. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +260 -94
  103. data/lib/compass/sass_extensions/sprites/image.rbc +694 -316
  104. data/lib/compass/sass_extensions/sprites/image_methods.rbc +900 -0
  105. data/lib/compass/sass_extensions/sprites/image_row.rbc +1168 -0
  106. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +3236 -0
  107. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +2067 -0
  108. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +714 -3641
  109. data/lib/compass/sass_extensions/sprites/sprite_methods.rb +1 -1
  110. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +3190 -0
  111. data/lib/compass/sprite_importer.rbc +1125 -1495
  112. data/lib/compass/util.rbc +19 -11
  113. data/lib/compass/version.rbc +53 -25
  114. data/test/fixtures/extensions/only_stylesheets/compass_init.rb +1 -0
  115. data/test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss +3 -0
  116. data/test/fixtures/stylesheets/compass/css/lists.css +7 -7
  117. data/test/fixtures/stylesheets/compass/css/reset.css +0 -1
  118. data/test/fixtures/stylesheets/compass/css/user-interface.css +5 -0
  119. data/test/fixtures/stylesheets/compass/sass/user-interface.scss +5 -0
  120. data/test/fixtures/stylesheets/envtest/tmp/env.css +2 -0
  121. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb +25 -0
  122. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss +5 -0
  123. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss +3 -0
  124. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss +6 -0
  125. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css +5 -0
  126. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css +3 -0
  127. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css +68 -0
  128. data/test/helpers/command_line.rbc +2820 -0
  129. data/test/helpers/diff.rbc +1104 -0
  130. data/test/helpers/io.rbc +962 -0
  131. data/test/helpers/rails.rbc +1116 -0
  132. data/test/helpers/test_case.rbc +1255 -0
  133. data/test/integrations/compass_test.rbc +6589 -0
  134. data/test/integrations/rails_integration_test.rbc +1342 -0
  135. data/test/integrations/sprites_test.rbc +6192 -0
  136. data/test/test_helper.rbc +1694 -0
  137. data/test/units/actions_test.rbc +644 -0
  138. data/test/units/command_line_test.rbc +1532 -0
  139. data/test/units/compass_png_test.rbc +0 -0
  140. data/test/units/configuration_test.rbc +3833 -0
  141. data/test/units/rails_configuration_test.rbc +1032 -0
  142. data/test/units/sass_extensions_test.rb +5 -0
  143. data/test/units/sass_extensions_test.rbc +3586 -0
  144. data/test/units/sprites/engine_test.rbc +962 -0
  145. data/test/units/sprites/image_row_test.rbc +1578 -0
  146. data/test/units/sprites/image_test.rbc +2836 -0
  147. data/test/units/sprites/importer_test.rbc +2620 -0
  148. data/test/units/sprites/row_fitter_test.rbc +1479 -0
  149. data/test/units/sprites/sprite_command_test.rbc +1147 -0
  150. data/test/units/sprites/sprite_map_test.rbc +6515 -0
  151. metadata +157 -51
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 333337424968067900
2
+ 9595534255132031488
3
3
  x
4
4
  M
5
5
  1
@@ -426,8 +426,8 @@ I
426
426
  I
427
427
  6b
428
428
  x
429
- 80
430
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/constants.rb
429
+ 82
430
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/constants.rb
431
431
  p
432
432
  1
433
433
  x
@@ -624,8 +624,8 @@ I
624
624
  I
625
625
  f
626
626
  x
627
- 80
628
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/constants.rb
627
+ 82
628
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/constants.rb
629
629
  p
630
630
  1
631
631
  x
@@ -693,8 +693,8 @@ I
693
693
  I
694
694
  f
695
695
  x
696
- 80
697
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/constants.rb
696
+ 82
697
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/constants.rb
698
698
  p
699
699
  1
700
700
  x
@@ -713,8 +713,8 @@ I
713
713
  I
714
714
  51
715
715
  x
716
- 80
717
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/constants.rb
716
+ 82
717
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/constants.rb
718
718
  p
719
719
  1
720
720
  x
@@ -1343,7 +1343,7 @@ x
1343
1343
  n
1344
1344
  n
1345
1345
  p
1346
- 39
1346
+ 43
1347
1347
  I
1348
1348
  0
1349
1349
  I
@@ -1413,6 +1413,10 @@ I
1413
1413
  I
1414
1414
  23
1415
1415
  I
1416
+ 11b
1417
+ I
1418
+ 0
1419
+ I
1416
1420
  11d
1417
1421
  I
1418
1422
  26
@@ -1421,10 +1425,14 @@ I
1421
1425
  I
1422
1426
  27
1423
1427
  I
1428
+ 131
1429
+ I
1430
+ 0
1431
+ I
1424
1432
  132
1425
1433
  x
1426
- 80
1427
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/constants.rb
1434
+ 82
1435
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/constants.rb
1428
1436
  p
1429
1437
  2
1430
1438
  x
@@ -1446,7 +1454,7 @@ x
1446
1454
  5
1447
1455
  first
1448
1456
  p
1449
- 19
1457
+ 21
1450
1458
  I
1451
1459
  -1
1452
1460
  I
@@ -1484,10 +1492,14 @@ I
1484
1492
  I
1485
1493
  2d
1486
1494
  I
1495
+ 95
1496
+ I
1497
+ 0
1498
+ I
1487
1499
  96
1488
1500
  x
1489
- 80
1490
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/constants.rb
1501
+ 82
1502
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/constants.rb
1491
1503
  p
1492
1504
  1
1493
1505
  x
@@ -1752,7 +1764,7 @@ s
1752
1764
  6
1753
1765
  center
1754
1766
  p
1755
- 17
1767
+ 19
1756
1768
  I
1757
1769
  0
1758
1770
  I
@@ -1786,10 +1798,14 @@ I
1786
1798
  I
1787
1799
  3b
1788
1800
  I
1801
+ 59
1802
+ I
1803
+ 0
1804
+ I
1789
1805
  5a
1790
1806
  x
1791
- 80
1792
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/constants.rb
1807
+ 82
1808
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/constants.rb
1793
1809
  p
1794
1810
  1
1795
1811
  x
@@ -1840,8 +1856,8 @@ I
1840
1856
  I
1841
1857
  59
1842
1858
  x
1843
- 80
1844
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/constants.rb
1859
+ 82
1860
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/constants.rb
1845
1861
  p
1846
1862
  2
1847
1863
  x
@@ -1851,7 +1867,7 @@ x
1851
1867
  8
1852
1868
  opposite
1853
1869
  p
1854
- 13
1870
+ 15
1855
1871
  I
1856
1872
  2
1857
1873
  I
@@ -1877,10 +1893,14 @@ I
1877
1893
  I
1878
1894
  32
1879
1895
  I
1896
+ 76
1897
+ I
1898
+ 0
1899
+ I
1880
1900
  77
1881
1901
  x
1882
- 80
1883
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/constants.rb
1902
+ 82
1903
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/constants.rb
1884
1904
  p
1885
1905
  0
1886
1906
  x
@@ -1895,7 +1915,7 @@ I
1895
1915
  I
1896
1916
  22
1897
1917
  x
1898
- 80
1899
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/constants.rb
1918
+ 82
1919
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/constants.rb
1900
1920
  p
1901
1921
  0
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 333337424968067900
2
+ 9595534255132031488
3
3
  x
4
4
  M
5
5
  1
@@ -412,8 +412,8 @@ I
412
412
  I
413
413
  9
414
414
  x
415
- 92
416
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
415
+ 94
416
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
417
417
  p
418
418
  0
419
419
  x
@@ -500,8 +500,8 @@ a
500
500
  I
501
501
  18
502
502
  x
503
- 92
504
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
503
+ 94
504
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
505
505
  p
506
506
  2
507
507
  x
@@ -553,8 +553,8 @@ d
553
553
  I
554
554
  4
555
555
  x
556
- 92
557
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
556
+ 94
557
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
558
558
  p
559
559
  0
560
560
  x
@@ -622,8 +622,8 @@ I
622
622
  I
623
623
  14
624
624
  x
625
- 92
626
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
625
+ 94
626
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
627
627
  p
628
628
  1
629
629
  x
@@ -679,8 +679,8 @@ I
679
679
  I
680
680
  8
681
681
  x
682
- 92
683
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
682
+ 94
683
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
684
684
  p
685
685
  1
686
686
  x
@@ -724,8 +724,8 @@ I
724
724
  I
725
725
  2
726
726
  x
727
- 92
728
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
727
+ 94
728
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
729
729
  p
730
730
  0
731
731
  x
@@ -785,8 +785,8 @@ I
785
785
  I
786
786
  f
787
787
  x
788
- 92
789
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
788
+ 94
789
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
790
790
  p
791
791
  1
792
792
  x
@@ -829,8 +829,8 @@ I
829
829
  I
830
830
  6e
831
831
  x
832
- 92
833
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
832
+ 94
833
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
834
834
  p
835
835
  0
836
836
  x
@@ -1018,8 +1018,8 @@ I
1018
1018
  I
1019
1019
  18
1020
1020
  x
1021
- 92
1022
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
1021
+ 94
1022
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
1023
1023
  p
1024
1024
  1
1025
1025
  x
@@ -1065,8 +1065,8 @@ I
1065
1065
  I
1066
1066
  4b
1067
1067
  x
1068
- 92
1069
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
1068
+ 94
1069
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
1070
1070
  p
1071
1071
  4
1072
1072
  x
@@ -1224,8 +1224,8 @@ I
1224
1224
  I
1225
1225
  25
1226
1226
  x
1227
- 92
1228
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
1227
+ 94
1228
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
1229
1229
  p
1230
1230
  1
1231
1231
  x
@@ -1638,8 +1638,8 @@ I
1638
1638
  I
1639
1639
  e
1640
1640
  x
1641
- 92
1642
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
1641
+ 94
1642
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
1643
1643
  p
1644
1644
  1
1645
1645
  x
@@ -1706,8 +1706,8 @@ I
1706
1706
  I
1707
1707
  e
1708
1708
  x
1709
- 92
1710
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
1709
+ 94
1710
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
1711
1711
  p
1712
1712
  1
1713
1713
  x
@@ -1738,7 +1738,7 @@ x
1738
1738
  4
1739
1739
  send
1740
1740
  p
1741
- 31
1741
+ 37
1742
1742
  I
1743
1743
  -1
1744
1744
  I
@@ -1748,10 +1748,18 @@ I
1748
1748
  I
1749
1749
  2f
1750
1750
  I
1751
+ 18
1752
+ I
1753
+ 0
1754
+ I
1751
1755
  19
1752
1756
  I
1753
1757
  30
1754
1758
  I
1759
+ 37
1760
+ I
1761
+ 0
1762
+ I
1755
1763
  38
1756
1764
  I
1757
1765
  31
@@ -1800,10 +1808,14 @@ I
1800
1808
  I
1801
1809
  3d
1802
1810
  I
1811
+ 10d
1812
+ I
1813
+ 0
1814
+ I
1803
1815
  10e
1804
1816
  x
1805
- 92
1806
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
1817
+ 94
1818
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
1807
1819
  p
1808
1820
  3
1809
1821
  x
@@ -1897,8 +1909,8 @@ I
1897
1909
  I
1898
1910
  21
1899
1911
  x
1900
- 92
1901
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
1912
+ 94
1913
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
1902
1914
  p
1903
1915
  2
1904
1916
  x
@@ -1932,8 +1944,8 @@ I
1932
1944
  I
1933
1945
  6d
1934
1946
  x
1935
- 92
1936
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
1947
+ 94
1948
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
1937
1949
  p
1938
1950
  0
1939
1951
  x
@@ -1948,7 +1960,7 @@ I
1948
1960
  I
1949
1961
  22
1950
1962
  x
1951
- 92
1952
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
1963
+ 94
1964
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/cross_browser_support.rb
1953
1965
  p
1954
1966
  0
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 333337424968067900
2
+ 9595534255132031488
3
3
  x
4
4
  M
5
5
  1
@@ -82,7 +82,7 @@ x
82
82
  7
83
83
  Display
84
84
  i
85
- 373
85
+ 527
86
86
  5
87
87
  66
88
88
  65
@@ -92,7 +92,7 @@ i
92
92
  43
93
93
  1
94
94
  4
95
- 10
95
+ 11
96
96
  49
97
97
  2
98
98
  1
@@ -204,21 +204,21 @@ i
204
204
  7
205
205
  38
206
206
  64
207
+ 7
208
+ 39
209
+ 64
210
+ 7
211
+ 40
212
+ 64
207
213
  35
208
- 35
214
+ 37
209
215
  49
210
- 39
216
+ 41
211
217
  2
212
218
  15
213
219
  13
214
220
  7
215
- 40
216
- 7
217
- 41
218
- 64
219
- 7
220
221
  42
221
- 64
222
222
  7
223
223
  43
224
224
  64
@@ -309,104 +309,179 @@ i
309
309
  7
310
310
  72
311
311
  64
312
+ 7
313
+ 73
314
+ 64
315
+ 7
316
+ 74
317
+ 64
318
+ 7
319
+ 75
320
+ 64
321
+ 7
322
+ 76
323
+ 64
324
+ 7
325
+ 77
326
+ 64
327
+ 7
328
+ 78
329
+ 64
330
+ 7
331
+ 79
332
+ 64
333
+ 7
334
+ 80
335
+ 64
336
+ 7
337
+ 81
338
+ 64
339
+ 7
340
+ 82
341
+ 64
342
+ 7
343
+ 83
344
+ 64
345
+ 7
346
+ 84
347
+ 64
348
+ 7
349
+ 85
350
+ 64
351
+ 7
352
+ 86
353
+ 64
354
+ 7
355
+ 87
356
+ 64
357
+ 7
358
+ 88
359
+ 64
360
+ 7
361
+ 89
362
+ 64
363
+ 7
364
+ 90
365
+ 64
312
366
  35
313
- 32
367
+ 48
314
368
  49
315
- 39
369
+ 41
316
370
  2
317
371
  15
318
372
  13
319
373
  7
320
- 73
374
+ 91
321
375
  7
322
- 74
376
+ 92
323
377
  64
324
378
  35
325
379
  1
326
380
  49
327
- 39
381
+ 41
328
382
  2
329
383
  15
330
384
  13
331
385
  7
332
- 75
386
+ 93
333
387
  7
334
- 76
388
+ 94
335
389
  64
336
390
  35
337
391
  1
338
392
  49
339
- 39
393
+ 41
340
394
  2
341
395
  15
342
396
  13
343
397
  7
344
- 77
398
+ 95
345
399
  7
346
- 78
400
+ 96
347
401
  64
348
402
  35
349
403
  1
350
404
  49
351
- 39
405
+ 41
352
406
  2
353
407
  15
354
408
  13
355
409
  7
356
- 79
410
+ 97
357
411
  7
358
- 80
412
+ 98
359
413
  64
360
414
  35
361
415
  1
362
416
  49
363
- 39
417
+ 41
364
418
  2
365
419
  15
366
420
  13
367
421
  7
368
- 81
422
+ 99
369
423
  7
370
- 82
424
+ 100
371
425
  64
372
426
  35
373
427
  1
374
428
  49
375
- 39
429
+ 41
376
430
  2
377
431
  15
378
432
  13
379
433
  7
380
- 83
434
+ 101
381
435
  7
382
- 84
436
+ 102
383
437
  64
384
438
  35
385
439
  1
386
440
  49
387
- 39
441
+ 41
388
442
  2
389
443
  15
390
444
  13
391
445
  7
392
- 85
446
+ 103
393
447
  7
394
- 86
448
+ 104
395
449
  64
396
450
  7
397
- 87
451
+ 105
398
452
  64
399
453
  35
400
454
  2
401
455
  49
402
- 39
456
+ 41
403
457
  2
404
458
  15
405
459
  13
406
460
  7
407
- 88
461
+ 106
408
462
  7
409
- 30
463
+ 5
464
+ 64
465
+ 7
466
+ 6
467
+ 64
468
+ 7
469
+ 12
470
+ 64
471
+ 7
472
+ 16
473
+ 64
474
+ 7
475
+ 17
476
+ 64
477
+ 7
478
+ 19
479
+ 64
480
+ 7
481
+ 28
482
+ 64
483
+ 7
484
+ 29
410
485
  64
411
486
  7
412
487
  31
@@ -415,49 +490,128 @@ i
415
490
  32
416
491
  64
417
492
  7
418
- 33
493
+ 38
419
494
  64
420
495
  7
421
- 34
496
+ 39
422
497
  64
423
- 7
424
498
  35
499
+ 12
500
+ 49
501
+ 41
502
+ 2
503
+ 15
504
+ 13
505
+ 7
506
+ 107
507
+ 7
508
+ 46
425
509
  64
426
510
  7
427
- 36
511
+ 52
428
512
  64
429
513
  7
430
- 37
514
+ 55
431
515
  64
432
516
  7
433
- 38
517
+ 56
518
+ 64
519
+ 7
520
+ 59
521
+ 64
522
+ 7
523
+ 64
524
+ 64
525
+ 7
526
+ 67
527
+ 64
528
+ 7
529
+ 68
530
+ 64
531
+ 7
532
+ 69
533
+ 64
534
+ 7
535
+ 70
536
+ 64
537
+ 7
538
+ 72
539
+ 64
540
+ 7
541
+ 73
542
+ 64
543
+ 7
544
+ 74
545
+ 64
546
+ 7
547
+ 85
548
+ 64
549
+ 7
550
+ 89
551
+ 64
552
+ 7
553
+ 90
434
554
  64
435
555
  35
436
- 9
556
+ 16
437
557
  49
438
- 39
558
+ 41
439
559
  2
440
560
  15
441
561
  49
442
- 89
562
+ 108
563
+ 2
564
+ 15
565
+ 45
566
+ 0
567
+ 109
568
+ 7
569
+ 110
570
+ 45
571
+ 0
572
+ 111
573
+ 7
574
+ 106
575
+ 49
576
+ 112
577
+ 1
578
+ 45
579
+ 0
580
+ 113
581
+ 7
582
+ 107
583
+ 49
584
+ 112
585
+ 1
586
+ 81
587
+ 114
588
+ 49
589
+ 115
590
+ 0
591
+ 13
592
+ 18
593
+ 3
594
+ 49
595
+ 41
443
596
  2
444
597
  15
598
+ 15
445
599
  99
446
600
  7
447
- 90
601
+ 116
448
602
  7
449
- 91
603
+ 117
450
604
  65
451
605
  67
452
606
  49
453
- 92
607
+ 118
454
608
  0
455
609
  49
456
- 93
610
+ 119
457
611
  4
458
612
  11
459
613
  I
460
- 28
614
+ 35
461
615
  I
462
616
  0
463
617
  I
@@ -466,7 +620,7 @@ I
466
620
  0
467
621
  n
468
622
  p
469
- 94
623
+ 120
470
624
  x
471
625
  15
472
626
  DEFAULT_DISPLAY
@@ -483,6 +637,12 @@ s
483
637
  7
484
638
  address
485
639
  s
640
+ 7
641
+ article
642
+ s
643
+ 5
644
+ aside
645
+ s
486
646
  10
487
647
  blockquote
488
648
  s
@@ -498,6 +658,9 @@ s
498
658
  2
499
659
  dd
500
660
  s
661
+ 7
662
+ details
663
+ s
501
664
  2
502
665
  dl
503
666
  s
@@ -507,9 +670,18 @@ s
507
670
  8
508
671
  fieldset
509
672
  s
673
+ 10
674
+ figcaption
675
+ s
676
+ 6
677
+ figure
678
+ s
510
679
  4
511
680
  form
512
681
  s
682
+ 6
683
+ footer
684
+ s
513
685
  8
514
686
  frameset
515
687
  s
@@ -534,12 +706,21 @@ s
534
706
  2
535
707
  hr
536
708
  s
709
+ 6
710
+ header
711
+ s
712
+ 6
713
+ hgroup
714
+ s
537
715
  7
538
716
  isindex
539
717
  s
540
718
  4
541
719
  menu
542
720
  s
721
+ 3
722
+ nav
723
+ s
543
724
  8
544
725
  noframes
545
726
  s
@@ -555,35 +736,14 @@ s
555
736
  3
556
737
  pre
557
738
  s
558
- 2
559
- ul
560
- s
561
739
  7
562
- article
563
- s
564
- 5
565
- aside
566
- s
567
- 6
568
- dialog
569
- s
570
- 6
571
- figure
572
- s
573
- 6
574
- footer
575
- s
576
- 6
577
- header
578
- s
579
- 6
580
- hgroup
581
- s
582
- 3
583
- nav
740
+ section
584
741
  s
585
742
  7
586
- section
743
+ summary
744
+ s
745
+ 2
746
+ ul
587
747
  x
588
748
  3
589
749
  []=
@@ -600,6 +760,9 @@ s
600
760
  7
601
761
  acronym
602
762
  s
763
+ 5
764
+ audio
765
+ s
603
766
  1
604
767
  b
605
768
  s
@@ -615,18 +778,30 @@ s
615
778
  2
616
779
  br
617
780
  s
781
+ 6
782
+ canvas
783
+ s
618
784
  4
619
785
  cite
620
786
  s
621
787
  4
622
788
  code
623
789
  s
790
+ 7
791
+ command
792
+ s
793
+ 8
794
+ datalist
795
+ s
624
796
  3
625
797
  dfn
626
798
  s
627
799
  2
628
800
  em
629
801
  s
802
+ 5
803
+ embed
804
+ s
630
805
  4
631
806
  font
632
807
  s
@@ -639,15 +814,39 @@ s
639
814
  5
640
815
  input
641
816
  s
817
+ 6
818
+ keygen
819
+ s
642
820
  3
643
821
  kbd
644
822
  s
645
823
  5
646
824
  label
647
825
  s
826
+ 4
827
+ mark
828
+ s
829
+ 5
830
+ meter
831
+ s
832
+ 6
833
+ output
834
+ s
835
+ 8
836
+ progress
837
+ s
648
838
  1
649
839
  q
650
840
  s
841
+ 2
842
+ rp
843
+ s
844
+ 2
845
+ rt
846
+ s
847
+ 4
848
+ ruby
849
+ s
651
850
  1
652
851
  s
653
852
  s
@@ -678,6 +877,9 @@ s
678
877
  8
679
878
  textarea
680
879
  s
880
+ 4
881
+ time
882
+ s
681
883
  2
682
884
  tt
683
885
  s
@@ -686,6 +888,12 @@ u
686
888
  s
687
889
  3
688
890
  var
891
+ s
892
+ 5
893
+ video
894
+ s
895
+ 3
896
+ wbr
689
897
  x
690
898
  5
691
899
  table
@@ -732,11 +940,29 @@ s
732
940
  2
733
941
  td
734
942
  x
735
- 5
736
- html5
943
+ 11
944
+ html5-block
945
+ x
946
+ 12
947
+ html5-inline
737
948
  x
738
949
  9
739
950
  const_set
951
+ n
952
+ x
953
+ 5
954
+ html5
955
+ n
956
+ x
957
+ 2
958
+ []
959
+ n
960
+ x
961
+ 1
962
+ +
963
+ x
964
+ 4
965
+ sort
740
966
  x
741
967
  16
742
968
  elements_of_type
@@ -873,16 +1099,16 @@ p
873
1099
  I
874
1100
  -1
875
1101
  I
876
- 16
1102
+ 17
877
1103
  I
878
1104
  0
879
1105
  I
880
- 17
1106
+ 18
881
1107
  I
882
1108
  45
883
1109
  x
884
- 78
885
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/display.rb
1110
+ 80
1111
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/display.rb
886
1112
  p
887
1113
  1
888
1114
  x
@@ -895,7 +1121,7 @@ x
895
1121
  15
896
1122
  add_defn_method
897
1123
  p
898
- 37
1124
+ 41
899
1125
  I
900
1126
  2
901
1127
  I
@@ -903,76 +1129,84 @@ I
903
1129
  I
904
1130
  5
905
1131
  I
906
- 12
1132
+ 13
907
1133
  I
908
1134
  e
909
1135
  I
910
1136
  3
911
1137
  I
912
- 2e
1138
+ 34
913
1139
  I
914
1140
  4
915
1141
  I
916
- 4f
1142
+ 5e
917
1143
  I
918
1144
  5
919
1145
  I
920
- 5e
1146
+ 86
921
1147
  I
922
1148
  6
923
1149
  I
924
- 80
1150
+ af
925
1151
  I
926
1152
  7
927
1153
  I
928
- a6
1154
+ d9
929
1155
  I
930
1156
  8
931
1157
  I
932
- ca
1158
+ 100
933
1159
  I
934
1160
  9
935
1161
  I
936
- e9
1162
+ 11f
937
1163
  I
938
1164
  a
939
1165
  I
940
- f5
1166
+ 12b
941
1167
  I
942
1168
  b
943
1169
  I
944
- 101
1170
+ 137
945
1171
  I
946
1172
  c
947
1173
  I
948
- 10d
1174
+ 143
949
1175
  I
950
1176
  d
951
1177
  I
952
- 119
1178
+ 14f
953
1179
  I
954
1180
  e
955
1181
  I
956
- 125
1182
+ 15b
957
1183
  I
958
1184
  f
959
1185
  I
960
- 131
1186
+ 167
961
1187
  I
962
1188
  10
963
1189
  I
964
- 140
1190
+ 176
965
1191
  I
966
1192
  11
967
1193
  I
968
- 167
1194
+ 1a3
969
1195
  I
970
- 16
1196
+ 12
1197
+ I
1198
+ 1df
1199
+ I
1200
+ 14
1201
+ I
1202
+ 201
971
1203
  I
972
- 175
1204
+ 17
1205
+ I
1206
+ 20f
973
1207
  x
974
- 78
975
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/display.rb
1208
+ 80
1209
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/display.rb
976
1210
  p
977
1211
  0
978
1212
  x
@@ -987,7 +1221,7 @@ I
987
1221
  I
988
1222
  22
989
1223
  x
990
- 78
991
- /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/display.rb
1224
+ 80
1225
+ /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/display.rb
992
1226
  p
993
1227
  0