compass 0.12.alpha.0 → 0.12.alpha.1

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 (206) hide show
  1. data/Rakefile +1 -0
  2. data/VERSION.yml +1 -1
  3. data/bin/compass +1 -1
  4. data/bin/compass.compiled.rbc +707 -0
  5. data/examples/downloader.rb +3 -2
  6. data/examples/ninesixty/bootstrap.rb +1 -1
  7. data/features/command_line.feature +17 -17
  8. data/features/extensions.feature +6 -0
  9. data/features/step_definitions/command_line_steps.rb +2 -0
  10. data/frameworks/compass/stylesheets/compass/_support.scss +1 -1
  11. data/frameworks/compass/stylesheets/compass/css3/_box-shadow.scss +7 -24
  12. data/frameworks/compass/stylesheets/compass/css3/_font-face.scss +0 -15
  13. data/frameworks/compass/stylesheets/compass/css3/_shared.scss +12 -12
  14. data/frameworks/compass/stylesheets/compass/css3/_text-shadow.scss +6 -20
  15. data/frameworks/compass/stylesheets/compass/css3/_transition.scss +38 -24
  16. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +19 -0
  17. data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +12 -3
  18. data/frameworks/compass/stylesheets/compass/typography/lists/_bullets.scss +1 -1
  19. data/frameworks/compass/stylesheets/compass/typography/lists/_inline-block-list.scss +14 -11
  20. data/frameworks/compass/stylesheets/compass/utilities/sprites/_sprite-img.scss +29 -6
  21. data/frameworks/compass/templates/pie/PIE.htc +83 -64
  22. data/lib/compass.rbc +42 -36
  23. data/lib/compass/actions.rb +0 -1
  24. data/lib/compass/actions.rbc +244 -85
  25. data/lib/compass/app_integration.rbc +28 -20
  26. data/lib/compass/app_integration/merb.rbc +8 -4
  27. data/lib/compass/app_integration/rails.rbc +664 -148
  28. data/lib/compass/app_integration/rails/actionpack31/helpers.rb +23 -0
  29. data/lib/compass/app_integration/rails/actionpack31/railtie.rb +8 -10
  30. data/lib/compass/app_integration/rails/configuration_defaults.rbc +1089 -332
  31. data/lib/compass/app_integration/rails/installer.rbc +145 -61
  32. data/lib/compass/app_integration/stand_alone.rbc +15 -15
  33. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +23 -23
  34. data/lib/compass/app_integration/stand_alone/installer.rbc +52 -32
  35. data/lib/compass/browser_support.rbc +35 -23
  36. data/lib/compass/commands.rbc +307 -0
  37. data/lib/compass/commands/base.rbc +1044 -0
  38. data/lib/compass/commands/clean_project.rbc +1856 -0
  39. data/lib/compass/commands/create_project.rbc +2691 -0
  40. data/lib/compass/commands/default.rbc +1677 -0
  41. data/lib/compass/commands/generate_grid_background.rbc +1939 -0
  42. data/lib/compass/commands/help.rbc +1921 -0
  43. data/lib/compass/commands/imports.rbc +969 -0
  44. data/lib/compass/commands/installer_command.rbc +807 -0
  45. data/lib/compass/commands/interactive.rbc +1341 -0
  46. data/lib/compass/commands/list_frameworks.rbc +1111 -0
  47. data/lib/compass/commands/print_version.rbc +2478 -0
  48. data/lib/compass/commands/project_base.rbc +2085 -0
  49. data/lib/compass/commands/project_stats.rb +7 -7
  50. data/lib/compass/commands/project_stats.rbc +4202 -0
  51. data/lib/compass/commands/registry.rbc +1350 -0
  52. data/lib/compass/commands/sprite.rbc +2212 -0
  53. data/lib/compass/commands/stamp_pattern.rbc +2011 -0
  54. data/lib/compass/commands/unpack_extension.rbc +2348 -0
  55. data/lib/compass/commands/update_project.rbc +3002 -0
  56. data/lib/compass/commands/validate_project.rbc +1686 -0
  57. data/lib/compass/commands/watch_project.rbc +4155 -0
  58. data/lib/compass/commands/write_configuration.rbc +2896 -0
  59. data/lib/compass/compiler.rb +3 -0
  60. data/lib/compass/compiler.rbc +591 -398
  61. data/lib/compass/configuration.rbc +134 -78
  62. data/lib/compass/configuration/adapters.rbc +98 -40
  63. data/lib/compass/configuration/comments.rbc +132 -51
  64. data/lib/compass/configuration/data.rb +6 -0
  65. data/lib/compass/configuration/data.rbc +541 -551
  66. data/lib/compass/configuration/defaults.rbc +764 -189
  67. data/lib/compass/configuration/file_data.rbc +37 -125
  68. data/lib/compass/configuration/helpers.rb +1 -0
  69. data/lib/compass/configuration/helpers.rbc +433 -153
  70. data/lib/compass/configuration/inheritance.rb +2 -0
  71. data/lib/compass/configuration/inheritance.rbc +412 -165
  72. data/lib/compass/configuration/paths.rbc +9 -9
  73. data/lib/compass/configuration/serialization.rbc +151 -84
  74. data/lib/compass/dependencies.rbc +16 -4
  75. data/lib/compass/errors.rbc +5 -5
  76. data/lib/compass/exec.rbc +500 -0
  77. data/lib/compass/exec/command_option_parser.rbc +676 -0
  78. data/lib/compass/exec/global_options_parser.rbc +1306 -0
  79. data/lib/compass/exec/helpers.rbc +758 -0
  80. data/lib/compass/exec/project_options_parser.rbc +1515 -0
  81. data/lib/compass/exec/sub_command_ui.rbc +1191 -0
  82. data/lib/compass/frameworks.rb +10 -4
  83. data/lib/compass/frameworks.rbc +118 -66
  84. data/lib/compass/grid_builder.rbc +0 -0
  85. data/lib/compass/installers.rbc +152 -0
  86. data/lib/compass/installers/bare_installer.rbc +939 -0
  87. data/lib/compass/installers/base.rbc +4427 -0
  88. data/lib/compass/installers/manifest.rbc +3335 -0
  89. data/lib/compass/installers/manifest_installer.rbc +1591 -0
  90. data/lib/compass/installers/template_context.rbc +1030 -0
  91. data/lib/compass/logger.rbc +2317 -0
  92. data/lib/compass/quick_cache.rbc +12 -8
  93. data/lib/compass/sass_extensions.rbc +8 -4
  94. data/lib/compass/sass_extensions/functions.rb +4 -2
  95. data/lib/compass/sass_extensions/functions.rbc +90 -57
  96. data/lib/compass/sass_extensions/functions/colors.rbc +22 -18
  97. data/lib/compass/sass_extensions/functions/constants.rbc +45 -25
  98. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +48 -36
  99. data/lib/compass/sass_extensions/functions/display.rbc +341 -107
  100. data/lib/compass/sass_extensions/functions/enumerate.rbc +9 -9
  101. data/lib/compass/sass_extensions/functions/env.rb +5 -0
  102. data/lib/compass/sass_extensions/functions/env.rbc +299 -0
  103. data/lib/compass/sass_extensions/functions/font_files.rb +32 -3
  104. data/lib/compass/sass_extensions/functions/font_files.rbc +540 -123
  105. data/lib/compass/sass_extensions/functions/gradient_support.rbc +379 -167
  106. data/lib/compass/sass_extensions/functions/image_size.rb +19 -16
  107. data/lib/compass/sass_extensions/functions/image_size.rbc +715 -400
  108. data/lib/compass/sass_extensions/functions/inline_image.rb +1 -1
  109. data/lib/compass/sass_extensions/functions/inline_image.rbc +152 -98
  110. data/lib/compass/sass_extensions/functions/lists.rbc +75 -39
  111. data/lib/compass/sass_extensions/functions/selectors.rbc +36 -28
  112. data/lib/compass/sass_extensions/functions/sprites.rb +27 -4
  113. data/lib/compass/sass_extensions/functions/sprites.rbc +255 -233
  114. data/lib/compass/sass_extensions/functions/trig.rbc +53 -51
  115. data/lib/compass/sass_extensions/functions/urls.rbc +3151 -1044
  116. data/lib/compass/sass_extensions/monkey_patches.rbc +5 -5
  117. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +63 -47
  118. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +36 -16
  119. data/lib/compass/sass_extensions/sprites.rbc +93 -13
  120. data/lib/compass/sass_extensions/sprites/engines.rbc +615 -6
  121. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +260 -94
  122. data/lib/compass/sass_extensions/sprites/image.rb +5 -5
  123. data/lib/compass/sass_extensions/sprites/image.rbc +694 -316
  124. data/lib/compass/sass_extensions/sprites/image_methods.rbc +900 -0
  125. data/lib/compass/sass_extensions/sprites/image_row.rbc +1168 -0
  126. data/lib/compass/sass_extensions/sprites/layout_methods.rb +12 -8
  127. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +3236 -0
  128. data/lib/compass/sass_extensions/sprites/row_fitter.rb +7 -1
  129. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +2067 -0
  130. data/lib/compass/sass_extensions/sprites/sprite_map.rb +1 -1
  131. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +714 -3641
  132. data/lib/compass/sass_extensions/sprites/sprite_methods.rb +24 -4
  133. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +3190 -0
  134. data/lib/compass/sprite_importer.rb +15 -80
  135. data/lib/compass/sprite_importer.rbc +1125 -1495
  136. data/lib/compass/sprite_importer/binding.rb +11 -0
  137. data/lib/compass/sprite_importer/content.erb +81 -0
  138. data/lib/compass/util.rbc +19 -11
  139. data/lib/compass/version.rbc +53 -25
  140. data/test/fixtures/extensions/only_stylesheets/compass_init.rb +1 -0
  141. data/test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss +3 -0
  142. data/test/fixtures/fonts/bgrove.base64.txt +1 -0
  143. data/test/fixtures/fonts/bgrove.ttf +0 -0
  144. data/test/fixtures/sprites/public/images/bool/false.png +0 -0
  145. data/test/fixtures/sprites/public/images/bool/true.png +0 -0
  146. data/test/fixtures/stylesheets/blueprint/css/screen.css +1 -2
  147. data/test/fixtures/stylesheets/blueprint/css/single-imports/debug.css +1 -2
  148. data/test/fixtures/stylesheets/compass/css/border_radius.css +6 -9
  149. data/test/fixtures/stylesheets/compass/css/box.css +0 -19
  150. data/test/fixtures/stylesheets/compass/css/box_shadow.css +3 -6
  151. data/test/fixtures/stylesheets/compass/css/columns.css +8 -16
  152. data/test/fixtures/stylesheets/compass/css/grid_background.css +4 -8
  153. data/test/fixtures/stylesheets/compass/css/lists.css +7 -7
  154. data/test/fixtures/stylesheets/compass/css/pie.css +2 -3
  155. data/test/fixtures/stylesheets/compass/css/reset.css +0 -1
  156. data/test/fixtures/stylesheets/compass/css/sprites.css +1 -1
  157. data/test/fixtures/stylesheets/compass/css/text_shadow.css +0 -3
  158. data/test/fixtures/stylesheets/compass/css/transform.css +28 -92
  159. data/test/fixtures/stylesheets/compass/css/transition.css +11 -0
  160. data/test/fixtures/stylesheets/compass/css/user-interface.css +4 -0
  161. data/test/fixtures/stylesheets/compass/images/{flag-s8c3c755a68.png → flag-s8f1e8fdb9b.png} +0 -0
  162. data/test/fixtures/stylesheets/compass/sass/text_shadow.scss +0 -1
  163. data/test/fixtures/stylesheets/compass/sass/transition.scss +4 -0
  164. data/test/fixtures/stylesheets/compass/sass/user-interface.scss +5 -0
  165. data/test/fixtures/stylesheets/envtest/config.rb +9 -0
  166. data/test/fixtures/stylesheets/envtest/css/env.css +2 -0
  167. data/test/fixtures/stylesheets/envtest/sass/env.scss +3 -0
  168. data/test/fixtures/stylesheets/envtest/tmp/env.css +2 -0
  169. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb +25 -0
  170. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss +5 -0
  171. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss +3 -0
  172. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss +6 -0
  173. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css +5 -0
  174. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css +3 -0
  175. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css +68 -0
  176. data/test/helpers/command_line.rbc +2820 -0
  177. data/test/helpers/diff.rbc +1104 -0
  178. data/test/helpers/io.rbc +962 -0
  179. data/test/helpers/rails.rbc +1116 -0
  180. data/test/helpers/test_case.rbc +1255 -0
  181. data/test/integrations/compass_test.rb +24 -2
  182. data/test/integrations/compass_test.rbc +6589 -0
  183. data/test/integrations/rails_integration_test.rbc +1342 -0
  184. data/test/integrations/sprites_test.rb +123 -25
  185. data/test/integrations/sprites_test.rbc +6192 -0
  186. data/test/test_helper.rb +7 -5
  187. data/test/test_helper.rbc +1694 -0
  188. data/test/tmp/compass_rails/public/images/{selectors-sef52c5c63a.png → selectors-s4c703bbc05.png} +0 -0
  189. data/test/units/actions_test.rbc +644 -0
  190. data/test/units/command_line_test.rbc +1532 -0
  191. data/test/units/compass_png_test.rbc +0 -0
  192. data/test/units/configuration_test.rbc +3833 -0
  193. data/test/units/rails_configuration_test.rbc +1032 -0
  194. data/test/units/sass_extensions_test.rb +31 -0
  195. data/test/units/sass_extensions_test.rbc +3586 -0
  196. data/test/units/sprites/engine_test.rbc +962 -0
  197. data/test/units/sprites/image_row_test.rbc +1578 -0
  198. data/test/units/sprites/image_test.rb +3 -3
  199. data/test/units/sprites/image_test.rbc +2836 -0
  200. data/test/units/sprites/importer_test.rb +6 -0
  201. data/test/units/sprites/importer_test.rbc +2620 -0
  202. data/test/units/sprites/row_fitter_test.rbc +1479 -0
  203. data/test/units/sprites/sprite_command_test.rbc +1147 -0
  204. data/test/units/sprites/sprite_map_test.rb +19 -6
  205. data/test/units/sprites/sprite_map_test.rbc +6515 -0
  206. metadata +180 -54
@@ -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